From ed287c35d7a25fbabc6e573dfeaa95db39dcad7c Mon Sep 17 00:00:00 2001 From: Samuel Cabrero Date: Tue, 13 Apr 2021 17:03:33 +0200 Subject: [PATCH] s3: smbd: Use new debug macros Signed-off-by: Samuel Cabrero Reviewed-by: Ralph Boehme --- source3/smbd/dosmode.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index 705e537a42a..915419c7e61 100644 --- a/source3/smbd/dosmode.c +++ b/source3/smbd/dosmode.c @@ -1210,14 +1210,14 @@ int file_ntimes(connection_struct *conn, const struct smb_filename *smb_fname, errno = 0; - DEBUG(6, ("file_ntime: actime: %s", - time_to_asc(convert_timespec_to_time_t(ft->atime)))); - DEBUG(6, ("file_ntime: modtime: %s", - time_to_asc(convert_timespec_to_time_t(ft->mtime)))); - DEBUG(6, ("file_ntime: ctime: %s", - time_to_asc(convert_timespec_to_time_t(ft->ctime)))); - DEBUG(6, ("file_ntime: createtime: %s", - time_to_asc(convert_timespec_to_time_t(ft->create_time)))); + DBG_INFO("actime: %s", + time_to_asc(convert_timespec_to_time_t(ft->atime))); + DBG_INFO("modtime: %s", + time_to_asc(convert_timespec_to_time_t(ft->mtime))); + DBG_INFO("ctime: %s", + time_to_asc(convert_timespec_to_time_t(ft->ctime))); + DBG_INFO("createtime: %s", + time_to_asc(convert_timespec_to_time_t(ft->create_time))); /* Don't update the time on read-only shares */ /* We need this as set_filetime (which can be called on -- 2.47.3