smbd: Add missing {}
authorVolker Lendecke <vl@samba.org>
Mon, 14 Jul 2014 15:20:57 +0000 (15:20 +0000)
committerStefan Metzmacher <metze@samba.org>
Tue, 22 Jul 2014 13:32:40 +0000 (15:32 +0200)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
source3/smbd/reply.c

index 832ba6252c66689775732cc0bd725e689e24112a..68564f69bc0f73112610d342419fe1a3fc40f018 100644 (file)
@@ -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;
                }