1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

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>
This commit is contained in:
Jeremy Allison 2019-10-04 15:21:21 -07:00 committed by Ralph Boehme
parent ffa09e09e8
commit 14e24881c4

View File

@ -271,12 +271,6 @@ static int syncops_mkdirat(vfs_handle_struct *handle,
mode)); 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 */ /* close needs to be handled specially */
static int syncops_close(vfs_handle_struct *handle, files_struct *fsp) 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 = { static struct vfs_fn_pointers vfs_syncops_fns = {
.connect_fn = syncops_connect, .connect_fn = syncops_connect,
.mkdirat_fn = syncops_mkdirat, .mkdirat_fn = syncops_mkdirat,
.rmdir_fn = syncops_rmdir,
.open_fn = syncops_open, .open_fn = syncops_open,
.renameat_fn = syncops_renameat, .renameat_fn = syncops_renameat,
.unlinkat_fn = syncops_unlinkat, .unlinkat_fn = syncops_unlinkat,