diff options
author | Volker Lendecke <vl@samba.org> | 2014-07-14 15:19:53 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2014-07-22 15:32:39 +0200 |
commit | 7dee885cc6c4ab04e9f719c6cbb449594af45f87 (patch) | |
tree | 04e582d069e69aedee5c3b5c694fa97f52083431 /source3/smbd/reply.c | |
parent | d27f3ef318820d18214b91a6d33cfa537a6f41d7 (diff) | |
download | samba-7dee885cc6c4ab04e9f719c6cbb449594af45f87.tar.gz samba-7dee885cc6c4ab04e9f719c6cbb449594af45f87.tar.xz samba-7dee885cc6c4ab04e9f719c6cbb449594af45f87.zip |
smbd: Remove superfluous ()
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index a33314d8f2..832ba6252c 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; |