summaryrefslogtreecommitdiff
path: root/source3/modules
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-10-04 14:40:26 -0700
committerRalph Boehme <slow@samba.org>2019-10-10 06:09:40 +0000
commit26eb0e70bc8aa12890cdc23c3ea6c2e0d408848b (patch)
treeec677df1cfaf71e96b833c47f35f11eb984b57c0 /source3/modules
parent19a4c5a99334ac38becdf6197e154f98c0455ff6 (diff)
downloadsamba-26eb0e70bc8aa12890cdc23c3ea6c2e0d408848b.tar.gz
s3: VFS: vfs_acl_xattr: Remove rmdir_fn(). No longer used.
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/modules')
-rw-r--r--source3/modules/vfs_acl_xattr.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/modules/vfs_acl_xattr.c b/source3/modules/vfs_acl_xattr.c
index 10314fc3089..7ac7a8dca60 100644
--- a/source3/modules/vfs_acl_xattr.c
+++ b/source3/modules/vfs_acl_xattr.c
@@ -298,14 +298,6 @@ static int acl_xattr_unlinkat(vfs_handle_struct *handle,
return ret;
}
-static int acl_xattr_rmdir(vfs_handle_struct *handle,
- const struct smb_filename *smb_dname)
-{
- return rmdir_acl_common(handle,
- handle->conn->cwd_fsp,
- smb_dname);
-}
-
static NTSTATUS acl_xattr_fget_nt_acl(vfs_handle_struct *handle,
files_struct *fsp,
uint32_t security_info,
@@ -344,7 +336,6 @@ static NTSTATUS acl_xattr_fset_nt_acl(vfs_handle_struct *handle,
static struct vfs_fn_pointers vfs_acl_xattr_fns = {
.connect_fn = connect_acl_xattr,
- .rmdir_fn = acl_xattr_rmdir,
.unlinkat_fn = acl_xattr_unlinkat,
.chmod_fn = chmod_acl_module_common,
.fchmod_fn = fchmod_acl_module_common,