1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

vfs_gpfs:Logging filename for smbd_gpfs_set_times_path()

Signed-off-by: ArchanaChidirala <archana.chidirala.chidirala@ibm.com>
Reviewed-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>

Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Wed Dec 30 10:21:08 UTC 2020 on sn-devel-184
This commit is contained in:
Archana 2020-12-15 00:44:47 +05:30 committed by Volker Lendecke
parent 8fcde5912a
commit 542ae1055c

View File

@ -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;