summaryrefslogtreecommitdiff
path: root/source3/modules
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-10-04 14:14:17 -0700
committerRalph Boehme <slow@samba.org>2019-10-10 06:09:40 +0000
commit060eb647f437f4fefb4e511061e48dd62d0c3099 (patch)
treeba11318e89777c9cb1b805fc25d781f677fd763f /source3/modules
parent44f9adc155fc59836580e1d9bc4820d547082fbd (diff)
downloadsamba-060eb647f437f4fefb4e511061e48dd62d0c3099.tar.gz
s3: VFS: vfs_fruit: 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_fruit.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c
index aa8d3a088b4..cce87aa13d8 100644
--- a/source3/modules/vfs_fruit.c
+++ b/source3/modules/vfs_fruit.c
@@ -2209,14 +2209,6 @@ exit_rmdir:
AT_REMOVEDIR);
}
-static int fruit_rmdir(struct vfs_handle_struct *handle,
- const struct smb_filename *smb_fname)
-{
- return fruit_rmdir_internal(handle,
- handle->conn->cwd_fsp,
- smb_fname);
-}
-
static int fruit_unlinkat(vfs_handle_struct *handle,
struct files_struct *dirfsp,
const struct smb_filename *smb_fname,
@@ -5159,7 +5151,6 @@ static struct vfs_fn_pointers vfs_fruit_fns = {
.chown_fn = fruit_chown,
.unlinkat_fn = fruit_unlinkat,
.renameat_fn = fruit_renameat,
- .rmdir_fn = fruit_rmdir,
.open_fn = fruit_open,
.close_fn = fruit_close,
.pread_fn = fruit_pread,