From b08fe2d98d65c4c389ac8771c91d907958490f4f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 3 Jul 2014 13:51:45 +0000 Subject: smbd: Remove unused blocking_lock_record* from VFS_BRL_LOCK_WINDOWS Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- examples/VFS/skel_opaque.c | 3 +-- examples/VFS/skel_transparent.c | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'examples/VFS') diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c index 5abea20dd0..653c83e9fc 100644 --- a/examples/VFS/skel_opaque.c +++ b/examples/VFS/skel_opaque.c @@ -574,8 +574,7 @@ static const char *skel_connectpath(struct vfs_handle_struct *handle, static NTSTATUS skel_brl_lock_windows(struct vfs_handle_struct *handle, struct byte_range_lock *br_lck, struct lock_struct *plock, - bool blocking_lock, - struct blocking_lock_record *blr) + bool blocking_lock) { return NT_STATUS_NOT_IMPLEMENTED; } diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index f042b2aead..319e9d1803 100644 --- a/examples/VFS/skel_transparent.c +++ b/examples/VFS/skel_transparent.c @@ -694,11 +694,10 @@ static const char *skel_connectpath(struct vfs_handle_struct *handle, static NTSTATUS skel_brl_lock_windows(struct vfs_handle_struct *handle, struct byte_range_lock *br_lck, struct lock_struct *plock, - bool blocking_lock, - struct blocking_lock_record *blr) + bool blocking_lock) { return SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle, - br_lck, plock, blocking_lock, blr); + br_lck, plock, blocking_lock); } static bool skel_brl_unlock_windows(struct vfs_handle_struct *handle, -- cgit