From fe7b78adb3da6d18e5fc252487c0a3817fb106dd Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 24 Jul 2024 10:00:22 +0200 Subject: [PATCH] smbd: Fix some DBGs DBG_DEBUG already has the function name prefix Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/smbd/smb2_trans2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source3/smbd/smb2_trans2.c b/source3/smbd/smb2_trans2.c index df6b06bb0e5..d350cef8c57 100644 --- a/source3/smbd/smb2_trans2.c +++ b/source3/smbd/smb2_trans2.c @@ -3915,13 +3915,13 @@ NTSTATUS smb_set_file_time(connection_struct *conn, round_timespec(conn->ts_res, &ft->atime); round_timespec(conn->ts_res, &ft->mtime); - DBG_DEBUG("smb_set_filetime: actime: %s\n ", + DBG_DEBUG("actime: %s\n ", timespec_string_buf(&ft->atime, true, &tbuf[0])); - DBG_DEBUG("smb_set_filetime: modtime: %s\n ", + DBG_DEBUG("modtime: %s\n ", timespec_string_buf(&ft->mtime, true, &tbuf[1])); - DBG_DEBUG("smb_set_filetime: ctime: %s\n ", + DBG_DEBUG("ctime: %s\n ", timespec_string_buf(&ft->ctime, true, &tbuf[2])); - DBG_DEBUG("smb_set_file_time: createtime: %s\n ", + DBG_DEBUG("createtime: %s\n ", timespec_string_buf(&ft->create_time, true, &tbuf[3])); if (setting_write_time) { -- 2.47.3