From: Volker Lendecke Date: Mon, 14 Jul 2014 15:19:53 +0000 (+0000) Subject: smbd: Remove superfluous () X-Git-Tag: tdb-1.3.1~654 X-Git-Url: https://repo.or.cz/w/Samba.git/commitdiff_plain/7dee885cc6c4ab04e9f719c6cbb449594af45f87 smbd: Remove superfluous () Signed-off-by: Volker Lendecke Reviewed-by: Stefan Metzmacher --- diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index a33314d8f24..832ba6252c6 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -7906,7 +7906,7 @@ void reply_lockingX(struct smb_request *req) /* Check if this is an oplock break on a file we have granted an oplock on. */ - if ((locktype & LOCKING_ANDX_OPLOCK_RELEASE)) { + if (locktype & LOCKING_ANDX_OPLOCK_RELEASE) { /* Client can insist on breaking to none. */ bool break_to_none = (oplocklevel == 0); bool result;