diff options
author | Volker Lendecke <vl@samba.org> | 2014-07-03 13:51:45 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-07-04 06:31:16 +0200 |
commit | b08fe2d98d65c4c389ac8771c91d907958490f4f (patch) | |
tree | b66284acecfba22e5153c03fa62f3c54e274d6a0 /examples/VFS/skel_transparent.c | |
parent | e2233fbcee542ccd9bb45ace8d6ae2f6d783c9a1 (diff) | |
download | samba-b08fe2d98d65c4c389ac8771c91d907958490f4f.tar.gz |
smbd: Remove unused blocking_lock_record* from VFS_BRL_LOCK_WINDOWS
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'examples/VFS/skel_transparent.c')
-rw-r--r-- | examples/VFS/skel_transparent.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index f042b2aead4..319e9d18035 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, |