From 39f14da9adc1832838ea79b23fbce9876fddb098 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 1 Jul 2019 15:25:27 +0200 Subject: vfs: Remove unused "msg_ctx" from SMB_VFS_BRL_UNLOCK_WINDOWS Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- examples/VFS/skel_opaque.c | 1 - examples/VFS/skel_transparent.c | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'examples') 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, -- cgit v1.2.1