diff options
author | Volker Lendecke <vl@samba.org> | 2019-07-01 15:25:27 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2019-07-02 17:01:27 +0000 |
commit | 39f14da9adc1832838ea79b23fbce9876fddb098 (patch) | |
tree | 37712937745322b953e31c092fbf8dffaf9f1fd3 /examples | |
parent | 3a93c638944a16b3e2104dbee25cb3668d01deea (diff) | |
download | samba-39f14da9adc1832838ea79b23fbce9876fddb098.tar.gz |
vfs: Remove unused "msg_ctx" from SMB_VFS_BRL_UNLOCK_WINDOWS
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/VFS/skel_opaque.c | 1 | ||||
-rw-r--r-- | examples/VFS/skel_transparent.c | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c index 1d4f28d1d28..4b2b11a1aaa 100644 --- a/examples/VFS/skel_opaque.c +++ b/examples/VFS/skel_opaque.c @@ -653,7 +653,6 @@ static NTSTATUS skel_brl_lock_windows(struct vfs_handle_struct *handle, } static bool skel_brl_unlock_windows(struct vfs_handle_struct *handle, - struct messaging_context *msg_ctx, struct byte_range_lock *br_lck, const struct lock_struct *plock) { diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index fd5d2296559..0de01ac9d54 100644 --- a/examples/VFS/skel_transparent.c +++ b/examples/VFS/skel_transparent.c @@ -824,11 +824,10 @@ static NTSTATUS skel_brl_lock_windows(struct vfs_handle_struct *handle, } static bool skel_brl_unlock_windows(struct vfs_handle_struct *handle, - struct messaging_context *msg_ctx, struct byte_range_lock *br_lck, const struct lock_struct *plock) { - return SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle, msg_ctx, br_lck, plock); + return SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle, br_lck, plock); } static bool skel_strict_lock_check(struct vfs_handle_struct *handle, |