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

s3: VFS: vfs_posix_eadb: 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:09:00 -07:00 committed by Ralph Boehme
parent ae28488fb0
commit 8e65a8c2e7

View File

@ -415,17 +415,6 @@ static int posix_eadb_unlinkat(vfs_handle_struct *handle,
return ret;
}
/*
* On rmdir we need to delete the tdb record
*/
static int posix_eadb_rmdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname)
{
return posix_eadb_rmdir_internal(handle,
handle->conn->cwd_fsp,
smb_fname);
}
/*
* Destructor for the VFS private data
*/
@ -482,7 +471,6 @@ static struct vfs_fn_pointers vfs_posix_eadb_fns = {
.removexattr_fn = posix_eadb_removexattr,
.fremovexattr_fn = posix_eadb_fremovexattr,
.unlinkat_fn = posix_eadb_unlinkat,
.rmdir_fn = posix_eadb_rmdir,
.connect_fn = posix_eadb_connect,
};