From c6ec923dce22770e54cd7f58937fbf2b75c28190 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 14 Jul 2014 15:20:57 +0000 Subject: [PATCH] smbd: Add missing {} Signed-off-by: Volker Lendecke Reviewed-by: Stefan Metzmacher --- source3/smbd/reply.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.11.4.GIT