From: Ralph Boehme Date: Tue, 17 May 2022 13:34:35 +0000 (+0200) Subject: vfs_gpfs: use fsp in gpfsacl_get_posix_acl() X-Git-Tag: talloc-2.3.4~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3764be70319d8e953a6205649fecaed06c93dbc8;p=thirdparty%2Fsamba.git vfs_gpfs: use fsp in gpfsacl_get_posix_acl() BUG: https://bugzilla.samba.org/show_bug.cgi?id=15069 Signed-off-by: Ralph Boehme Reviewed-by: Christof Schmitt --- diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 41eace799b2..e6485cb0950 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -961,8 +961,8 @@ static SMB_ACL_T gpfsacl_get_posix_acl(struct files_struct *fsp, pacl = vfs_gpfs_getacl(talloc_tos(), path, false, type); if (pacl == NULL) { - DEBUG(10, ("vfs_gpfs_getacl failed for %s with %s\n", - path, strerror(errno))); + DBG_DEBUG("vfs_gpfs_getacl failed for %s with %s\n", + fsp_str_dbg(fsp), strerror(errno)); if (errno == 0) { errno = EINVAL; }