diff options
author | Volker Lendecke <vl@samba.org> | 2014-07-14 15:20:57 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2014-07-22 15:32:40 +0200 |
commit | c6ec923dce22770e54cd7f58937fbf2b75c28190 (patch) | |
tree | 47809736e7e80c0b4ef39b603bfe103b754b21a5 /source3 | |
parent | 7dee885cc6c4ab04e9f719c6cbb449594af45f87 (diff) | |
download | samba-c6ec923dce22770e54cd7f58937fbf2b75c28190.tar.gz |
smbd: Add missing {}
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/reply.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 832ba6252c6..68564f69bc0 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -7965,10 +7965,11 @@ void reply_lockingX(struct smb_request *req) if (num_locks == 0 && num_ulocks == 0) { /* Sanity check - ensure a pure oplock break is not a chained request. */ - if(CVAL(req->vwv+0, 0) != 0xff) + if (CVAL(req->vwv+0, 0) != 0xff) { DEBUG(0,("reply_lockingX: Error : pure oplock " "break is a chained %d request !\n", (unsigned int)CVAL(req->vwv+0, 0))); + } END_PROFILE(SMBlockingX); return; } |