summaryrefslogtreecommitdiff
path: root/source3/modules
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-10-04 15:21:21 -0700
committerRalph Boehme <slow@samba.org>2019-10-10 06:09:41 +0000
commit14e24881c4e2839e896c3b6e8b94ecc7a990947f (patch)
tree17858ed5adc7b9248b460c5dc50ca86b93f0a358 /source3/modules
parentffa09e09e87ff82d0091529230d9122358d70e96 (diff)
downloadsamba-14e24881c4e2839e896c3b6e8b94ecc7a990947f.tar.gz
s3: VFS: vfs_syncops: 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_syncops.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source3/modules/vfs_syncops.c b/source3/modules/vfs_syncops.c
index 0790a2102d5..a863fbc0676 100644
--- a/source3/modules/vfs_syncops.c
+++ b/source3/modules/vfs_syncops.c
@@ -271,12 +271,6 @@ static int syncops_mkdirat(vfs_handle_struct *handle,
mode));
}
-static int syncops_rmdir(vfs_handle_struct *handle,
- const struct smb_filename *smb_fname)
-{
- SYNCOPS_NEXT_SMB_FNAME(RMDIR, smb_fname, (handle, smb_fname));
-}
-
/* close needs to be handled specially */
static int syncops_close(vfs_handle_struct *handle, files_struct *fsp)
{
@@ -331,7 +325,6 @@ static int syncops_connect(struct vfs_handle_struct *handle, const char *service
static struct vfs_fn_pointers vfs_syncops_fns = {
.connect_fn = syncops_connect,
.mkdirat_fn = syncops_mkdirat,
- .rmdir_fn = syncops_rmdir,
.open_fn = syncops_open,
.renameat_fn = syncops_renameat,
.unlinkat_fn = syncops_unlinkat,