]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3: VFS: posixacl: Remove sys_acl_delete_def_file_fn pointer.
authorJeremy Allison <jra@samba.org>
Sat, 15 May 2021 02:31:09 +0000 (19:31 -0700)
committerJeremy Allison <jra@samba.org>
Tue, 18 May 2021 17:29:34 +0000 (17:29 +0000)
Leave the called function as that's in the public API.
We will be able to get rid of it when we delete sys_acl_delete_def_file()
after all the callers are gone.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Noel Power <npower@samba.org>
source3/modules/vfs_posixacl.c

index 4dd0d33b70e8e7071ab48a0569252bd705095674..f393b036d314bc1d186f8fec728a4976254ac1f1 100644 (file)
@@ -441,7 +441,6 @@ static struct vfs_fn_pointers posixacl_fns = {
        .sys_acl_blob_get_file_fn = posix_sys_acl_blob_get_file,
        .sys_acl_blob_get_fd_fn = posix_sys_acl_blob_get_fd,
        .sys_acl_set_fd_fn = posixacl_sys_acl_set_fd,
-       .sys_acl_delete_def_file_fn = posixacl_sys_acl_delete_def_file,
        .sys_acl_delete_def_fd_fn = posixacl_sys_acl_delete_def_fd,
 };