From: Noel Power Date: Tue, 16 Feb 2021 19:55:23 +0000 (+0000) Subject: s3/modules: posixacl convert from SMB_VFS_SETXATTR -> SMB_VFS_FSETXATTR X-Git-Tag: tevent-0.11.0~1594 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a241e9b3d437738357d071ccb4d9cf884ed219f0;p=thirdparty%2Fsamba.git s3/modules: posixacl convert from SMB_VFS_SETXATTR -> SMB_VFS_FSETXATTR Signed-off-by: Noel Power Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/posixacl_xattr.c b/source3/modules/posixacl_xattr.c index 7582ceb121e..a835f2e5ebe 100644 --- a/source3/modules/posixacl_xattr.c +++ b/source3/modules/posixacl_xattr.c @@ -474,7 +474,7 @@ int posixacl_xattr_acl_set_file(vfs_handle_struct *handle, return -1; } - return SMB_VFS_SETXATTR(handle->conn, smb_fname, + return SMB_VFS_FSETXATTR(smb_fname->fsp, name, buf, size, 0); }