diff options
| author | Volker Lendecke <vl@samba.org> | 2014-07-03 14:05:03 +0000 |
|---|---|---|
| committer | Jeremy Allison <jra@samba.org> | 2014-07-04 06:31:16 +0200 |
| commit | c886e66232a264fd41db507f853c74e1d82858be (patch) | |
| tree | 959a820efd0745e6c9eafc615d6ec76079a74662 /source3/locking | |
| parent | b08fe2d98d65c4c389ac8771c91d907958490f4f (diff) | |
| download | samba-c886e66232a264fd41db507f853c74e1d82858be.tar.gz samba-c886e66232a264fd41db507f853c74e1d82858be.tar.xz samba-c886e66232a264fd41db507f853c74e1d82858be.zip | |
smbd: brl_lock does not need "blr" anymore
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/locking')
| -rw-r--r-- | source3/locking/brlock.c | 3 | ||||
| -rw-r--r-- | source3/locking/locking.c | 3 | ||||
| -rw-r--r-- | source3/locking/proto.h | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/source3/locking/brlock.c b/source3/locking/brlock.c index 0f7c22514c..1527a14071 100644 --- a/source3/locking/brlock.c +++ b/source3/locking/brlock.c @@ -953,8 +953,7 @@ NTSTATUS brl_lock(struct messaging_context *msg_ctx, enum brl_type lock_type, enum brl_flavour lock_flav, bool blocking_lock, - uint64_t *psmblctx, - struct blocking_lock_record *blr) + uint64_t *psmblctx) { NTSTATUS ret; struct lock_struct lock; diff --git a/source3/locking/locking.c b/source3/locking/locking.c index b3f65ee6a4..d82c5b3092 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -287,8 +287,7 @@ struct byte_range_lock *do_lock(struct messaging_context *msg_ctx, lock_type, lock_flav, blocking_lock, - psmblctx, - blr); + psmblctx); DEBUG(10, ("do_lock: returning status=%s\n", nt_errstr(*perr))); diff --git a/source3/locking/proto.h b/source3/locking/proto.h index dc115e1d96..dc880d1415 100644 --- a/source3/locking/proto.h +++ b/source3/locking/proto.h @@ -47,8 +47,7 @@ NTSTATUS brl_lock(struct messaging_context *msg_ctx, enum brl_type lock_type, enum brl_flavour lock_flav, bool blocking_lock, - uint64_t *psmblctx, - struct blocking_lock_record *blr); + uint64_t *psmblctx); bool brl_unlock(struct messaging_context *msg_ctx, struct byte_range_lock *br_lck, uint64_t smblctx, |
