1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

s3: VFS: posixacl: Remove sys_acl_delete_def_file_fn pointer.

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>
This commit is contained in:
Jeremy Allison 2021-05-14 19:31:09 -07:00
parent 39901d1754
commit 97821542d3

View 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,
};