]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
smbd: Modernize a DEBUG
authorVolker Lendecke <vl@samba.org>
Tue, 25 Jun 2024 08:41:41 +0000 (10:41 +0200)
committerRalph Boehme <slow@samba.org>
Fri, 28 Jun 2024 13:26:24 +0000 (13:26 +0000)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/smbd/dosmode.c

index 8b47a89dec4f5623cbb1620448c588ad442a5811..13aadb58a92ed3f03770560f54896ce9a1825e22 100644 (file)
@@ -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;
 }