From: Archana Date: Mon, 14 Dec 2020 19:14:47 +0000 (+0530) Subject: vfs_gpfs:Logging filename for smbd_gpfs_set_times_path() X-Git-Tag: samba-4.14.0rc1~169 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=542ae1055cd58c4715641b1665716b97efe371b3;p=thirdparty%2Fsamba.git vfs_gpfs:Logging filename for smbd_gpfs_set_times_path() Signed-off-by: ArchanaChidirala Reviewed-by: Christof Schmitt Reviewed-by: Volker Lendecke Autobuild-User(master): Volker Lendecke Autobuild-Date(master): Wed Dec 30 10:21:08 UTC 2020 on sn-devel-184 --- diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index d7dec809c6e..172194dbead 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -1897,8 +1897,9 @@ static int smbd_gpfs_set_times_path(char *path, struct smb_file_time *ft) rc = gpfswrap_set_times_path(path, flags, gpfs_times); if (rc != 0 && errno != ENOSYS) { - DEBUG(1,("gpfs_set_times() returned with error %s\n", - strerror(errno))); + DBG_WARNING("gpfs_set_times() returned with error %s for %s\n", + strerror(errno), + path); } return rc;