From 1d2fbbdd640bb9c01f18d41fdd1a4949317be930 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 25 Jun 2024 10:41:41 +0200 Subject: [PATCH] smbd: Modernize a DEBUG Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme --- source3/smbd/dosmode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.47.3