diff options
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; |