summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_not_implemented.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2020-04-14 10:27:46 -0700
committerJeremy Allison <jra@samba.org>2020-05-07 21:04:59 +0000
commitc6e71fbd68c86f698e39047cf8d094a608fbb94f (patch)
tree82bd7d1be7b01da9360811917fff16b6a40cd304 /source3/modules/vfs_not_implemented.c
parent7acbef462bd831b377df422d343bcf7938f02855 (diff)
downloadsamba-c6e71fbd68c86f698e39047cf8d094a608fbb94f.tar.gz
s3: VFS: Complete the replacement of SMB_VFS_GET_NT_ACL() -> SMB_VFS_GET_NT_ACL_AT().
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Thu May 7 21:04:59 UTC 2020 on sn-devel-184
Diffstat (limited to 'source3/modules/vfs_not_implemented.c')
-rw-r--r--source3/modules/vfs_not_implemented.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/source3/modules/vfs_not_implemented.c b/source3/modules/vfs_not_implemented.c
index c04704dad10..6b4abf8de67 100644
--- a/source3/modules/vfs_not_implemented.c
+++ b/source3/modules/vfs_not_implemented.c
@@ -796,15 +796,6 @@ NTSTATUS vfs_not_implemented_fget_nt_acl(vfs_handle_struct *handle, files_struct
return NT_STATUS_NOT_IMPLEMENTED;
}
-NTSTATUS vfs_not_implemented_get_nt_acl(vfs_handle_struct *handle,
- const struct smb_filename *smb_fname,
- uint32_t security_info,
- TALLOC_CTX *mem_ctx,
- struct security_descriptor **ppdesc)
-{
- return NT_STATUS_NOT_IMPLEMENTED;
-}
-
NTSTATUS vfs_not_implemented_get_nt_acl_at(vfs_handle_struct *handle,
struct files_struct *dirfsp,
const struct smb_filename *smb_fname,
@@ -1147,7 +1138,6 @@ static struct vfs_fn_pointers vfs_not_implemented_fns = {
/* NT ACL operations. */
.fget_nt_acl_fn = vfs_not_implemented_fget_nt_acl,
- .get_nt_acl_fn = vfs_not_implemented_get_nt_acl,
.get_nt_acl_at_fn = vfs_not_implemented_get_nt_acl_at,
.fset_nt_acl_fn = vfs_not_implemented_fset_nt_acl,