From: Jeremy Allison Date: Tue, 8 Jun 2021 22:37:35 +0000 (-0700) Subject: s3: VFS: posixacl: Remove call to posixacl_sys_acl_get_file(). X-Git-Tag: tevent-0.11.0~483 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b828784caedc92ebd2941e5091502a26fc16c2e3;p=thirdparty%2Fsamba.git s3: VFS: posixacl: Remove call to posixacl_sys_acl_get_file(). We can't remove the code yet until the callers inside sysacl.c are gone. We must remove the VFS function first. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- diff --git a/source3/modules/vfs_posixacl.c b/source3/modules/vfs_posixacl.c index 44a7efc9933..2126ef2c7e7 100644 --- a/source3/modules/vfs_posixacl.c +++ b/source3/modules/vfs_posixacl.c @@ -460,7 +460,6 @@ static acl_t smb_acl_to_posix(const struct smb_acl_t *acl) /* VFS operations structure */ static struct vfs_fn_pointers posixacl_fns = { - .sys_acl_get_file_fn = posixacl_sys_acl_get_file, .sys_acl_get_fd_fn = posixacl_sys_acl_get_fd, .sys_acl_blob_get_file_fn = posix_sys_acl_blob_get_file, .sys_acl_blob_get_fd_fn = posix_sys_acl_blob_get_fd,