From: Volker Lendecke Date: Tue, 25 Jun 2024 08:41:41 +0000 (+0200) Subject: smbd: Modernize a DEBUG X-Git-Tag: tdb-1.4.11~263 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1d2fbbdd640bb9c01f18d41fdd1a4949317be930;p=thirdparty%2Fsamba.git smbd: Modernize a DEBUG Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme --- diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index 8b47a89dec4..13aadb58a92 100644 --- a/source3/smbd/dosmode.c +++ b/source3/smbd/dosmode.c @@ -540,9 +540,9 @@ NTSTATUS set_ea_dos_attribute(connection_struct *conn, btime = nt_time_to_full_timespec(dosattrib.info.info5.create_time); update_stat_ex_create_time(&smb_fname->st, btime); - DEBUG(10,("set_ea_dos_attribute: set EA 0x%x on file %s\n", - (unsigned int)dosmode, - smb_fname_str_dbg(smb_fname))); + DBG_DEBUG("set EA 0x%" PRIx32 " on file %s\n", + dosmode, + smb_fname_str_dbg(smb_fname)); return NT_STATUS_OK; }