]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
smbd: Fix some DBGs
authorVolker Lendecke <vl@samba.org>
Wed, 24 Jul 2024 08:00:22 +0000 (10:00 +0200)
committerJeremy Allison <jra@samba.org>
Tue, 6 Aug 2024 16:29:33 +0000 (16:29 +0000)
DBG_DEBUG already has the function name prefix

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/smbd/smb2_trans2.c

index df6b06bb0e5d78b78b0ab73b3667749529f0319c..d350cef8c57d22634781a5b9336f1f3d06f55f5f 100644 (file)
@@ -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) {