diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-04 18:31:09 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-05 11:06:27 +0200 |
commit | 8da057550758919fa0bded72c2ec973f2aefd1d6 (patch) | |
tree | b1ce6790b8717da84f4a796df4cc50a4ce77b98b /source3 | |
parent | 9a3f53075ed1d5406dc3b09e8e01829c821723df (diff) | |
download | samba-8da057550758919fa0bded72c2ec973f2aefd1d6.tar.gz samba-8da057550758919fa0bded72c2ec973f2aefd1d6.tar.bz2 samba-8da057550758919fa0bded72c2ec973f2aefd1d6.zip |
s3: Remove smbd_messaging_context() from reply_unlock()
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 288fde5960..3010c74eca 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -4903,7 +4903,7 @@ void reply_unlock(struct smb_request *req) count = (uint64_t)IVAL(req->vwv+1, 0); offset = (uint64_t)IVAL(req->vwv+3, 0); - status = do_unlock(smbd_messaging_context(), + status = do_unlock(req->sconn->msg_ctx, fsp, (uint64_t)req->smbpid, count, |