summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-10-04 15:41:21 -0700
committerRalph Boehme <slow@samba.org>2019-10-10 07:26:43 +0000
commit81fbba8f649e4115961eb77462ca450e7a30611e (patch)
tree0dfa71be5fca95f86fd32f5772cb69551629cc05 /source3/smbd
parent5bf96b1f0b61847771aab7be35121a1d5c15554e (diff)
downloadsamba-81fbba8f649e4115961eb77462ca450e7a30611e.tar.gz
s3: VFS: Complete the removal of SMB_VFS_RMDIR()
All users now use SMB_VFS_UNLINKAT(..., AT_REMOVEDIR). Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Thu Oct 10 07:26:43 UTC 2019 on sn-devel-184
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/vfs.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c
index 5332f00e876..34923b62ab4 100644
--- a/source3/smbd/vfs.c
+++ b/source3/smbd/vfs.c
@@ -1623,13 +1623,6 @@ int smb_vfs_call_mkdirat(struct vfs_handle_struct *handle,
mode);
}
-int smb_vfs_call_rmdir(struct vfs_handle_struct *handle,
- const struct smb_filename *smb_fname)
-{
- VFS_FIND(rmdir);
- return handle->fns->rmdir_fn(handle, smb_fname);
-}
-
int smb_vfs_call_closedir(struct vfs_handle_struct *handle,
DIR *dir)
{