summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_not_implemented.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2019-06-20 13:42:12 +0200
committerJeremy Allison <jra@samba.org>2019-06-20 18:34:20 +0000
commit4bbe291efcb389715651b2eb94330b6c36f83030 (patch)
tree7fda5f821afab0ded954145e3b3c85b3d65a59ea /source3/modules/vfs_not_implemented.c
parent871bb7562cad1d4a9dccab602880d2ef3fffd75c (diff)
downloadsamba-4bbe291efcb389715651b2eb94330b6c36f83030.tar.gz
vfs: Remove SMB_VFS_BRL_CANCEL_WINDOWS
This is not called anymore, bump the VFS version number in a separate commit Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Thu Jun 20 18:34:20 UTC 2019 on sn-devel-184
Diffstat (limited to 'source3/modules/vfs_not_implemented.c')
-rw-r--r--source3/modules/vfs_not_implemented.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/modules/vfs_not_implemented.c b/source3/modules/vfs_not_implemented.c
index 214390204a5..d3aca899067 100644
--- a/source3/modules/vfs_not_implemented.c
+++ b/source3/modules/vfs_not_implemented.c
@@ -658,14 +658,6 @@ bool vfs_not_implemented_brl_unlock_windows(struct vfs_handle_struct *handle,
return false;
}
-bool vfs_not_implemented_brl_cancel_windows(struct vfs_handle_struct *handle,
- struct byte_range_lock *br_lck,
- struct lock_struct *plock)
-{
- errno = ENOSYS;
- return false;
-}
-
bool vfs_not_implemented_strict_lock_check(struct vfs_handle_struct *handle,
struct files_struct *fsp,
struct lock_struct *plock)
@@ -1108,7 +1100,6 @@ static struct vfs_fn_pointers vfs_not_implemented_fns = {
.connectpath_fn = vfs_not_implemented_connectpath,
.brl_lock_windows_fn = vfs_not_implemented_brl_lock_windows,
.brl_unlock_windows_fn = vfs_not_implemented_brl_unlock_windows,
- .brl_cancel_windows_fn = vfs_not_implemented_brl_cancel_windows,
.strict_lock_check_fn = vfs_not_implemented_strict_lock_check,
.translate_name_fn = vfs_not_implemented_translate_name,
.fsctl_fn = vfs_not_implemented_fsctl,