1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

smbd: Modernize a DEBUG

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Volker Lendecke 2024-06-25 10:41:41 +02:00 committed by Ralph Boehme
parent 2edb49c5fc
commit 1d2fbbdd64

View File

@ -540,9 +540,9 @@ NTSTATUS set_ea_dos_attribute(connection_struct *conn,
btime = nt_time_to_full_timespec(dosattrib.info.info5.create_time); btime = nt_time_to_full_timespec(dosattrib.info.info5.create_time);
update_stat_ex_create_time(&smb_fname->st, btime); update_stat_ex_create_time(&smb_fname->st, btime);
DEBUG(10,("set_ea_dos_attribute: set EA 0x%x on file %s\n", DBG_DEBUG("set EA 0x%" PRIx32 " on file %s\n",
(unsigned int)dosmode, dosmode,
smb_fname_str_dbg(smb_fname))); smb_fname_str_dbg(smb_fname));
return NT_STATUS_OK; return NT_STATUS_OK;
} }