From b828784caedc92ebd2941e5091502a26fc16c2e3 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 8 Jun 2021 15:37:35 -0700 Subject: [PATCH] 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 --- source3/modules/vfs_posixacl.c | 1 - 1 file changed, 1 deletion(-) 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, -- 2.47.3