summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-07-14 15:20:57 +0000
committerStefan Metzmacher <metze@samba.org>2014-07-22 15:32:40 +0200
commitc6ec923dce22770e54cd7f58937fbf2b75c28190 (patch)
tree47809736e7e80c0b4ef39b603bfe103b754b21a5
parent7dee885cc6c4ab04e9f719c6cbb449594af45f87 (diff)
downloadsamba-c6ec923dce22770e54cd7f58937fbf2b75c28190.tar.gz
samba-c6ec923dce22770e54cd7f58937fbf2b75c28190.tar.xz
samba-c6ec923dce22770e54cd7f58937fbf2b75c28190.zip
smbd: Add missing {}
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
-rw-r--r--source3/smbd/reply.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index 832ba6252c..68564f69bc 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;
}