1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-15 16:59:09 +03:00

s3: smbd: Use new debug macros

Signed-off-by: Samuel Cabrero <scabrero@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Samuel Cabrero
2021-04-13 17:03:33 +02:00
committed by Samuel Cabrero
parent c942e2bd39
commit ed287c35d7

View File

@ -1210,14 +1210,14 @@ int file_ntimes(connection_struct *conn, const struct smb_filename *smb_fname,
errno = 0; errno = 0;
DEBUG(6, ("file_ntime: actime: %s", DBG_INFO("actime: %s",
time_to_asc(convert_timespec_to_time_t(ft->atime)))); time_to_asc(convert_timespec_to_time_t(ft->atime)));
DEBUG(6, ("file_ntime: modtime: %s", DBG_INFO("modtime: %s",
time_to_asc(convert_timespec_to_time_t(ft->mtime)))); time_to_asc(convert_timespec_to_time_t(ft->mtime)));
DEBUG(6, ("file_ntime: ctime: %s", DBG_INFO("ctime: %s",
time_to_asc(convert_timespec_to_time_t(ft->ctime)))); time_to_asc(convert_timespec_to_time_t(ft->ctime)));
DEBUG(6, ("file_ntime: createtime: %s", DBG_INFO("createtime: %s",
time_to_asc(convert_timespec_to_time_t(ft->create_time)))); time_to_asc(convert_timespec_to_time_t(ft->create_time)));
/* Don't update the time on read-only shares */ /* Don't update the time on read-only shares */
/* We need this as set_filetime (which can be called on /* We need this as set_filetime (which can be called on