summaryrefslogtreecommitdiff
path: root/source4/torture/smb2/oplock.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-09-11 16:28:45 +0200
committerMichael Adam <obnox@samba.org>2012-09-11 22:09:18 +0200
commitdf5f962c60bb273c4759334ed6cc490d2a91d5ba (patch)
tree6b6539f060dc5ccfaca1105176700b592722aab2 /source4/torture/smb2/oplock.c
parent439c907f6b2b02fefa5f1913cbbb8ce971d2611a (diff)
downloadsamba-df5f962c60bb273c4759334ed6cc490d2a91d5ba.tar.gz
samba-df5f962c60bb273c4759334ed6cc490d2a91d5ba.tar.bz2
samba-df5f962c60bb273c4759334ed6cc490d2a91d5ba.zip
s4:torture:smb2: fix error reporting in the oplock-brl3 test
(Error was set to an unused variable) Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Tue Sep 11 22:09:18 CEST 2012 on sn-devel-104
Diffstat (limited to 'source4/torture/smb2/oplock.c')
-rw-r--r--source4/torture/smb2/oplock.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/torture/smb2/oplock.c b/source4/torture/smb2/oplock.c
index 00cf7b5c3d..fc939cc06d 100644
--- a/source4/torture/smb2/oplock.c
+++ b/source4/torture/smb2/oplock.c
@@ -3190,7 +3190,6 @@ static bool test_smb2_oplock_brl3(struct torture_context *tctx, struct smb2_tree
const char *fname = BASEDIR "\\test_batch_brl.dat";
bool ret = true;
uint8_t buf[1000];
- bool correct = true;
union smb_open io;
NTSTATUS status;
struct smb2_handle h, h1, h2;
@@ -3241,7 +3240,7 @@ static bool test_smb2_oplock_brl3(struct torture_context *tctx, struct smb2_tree
if (!NT_STATUS_EQUAL(status, NT_STATUS_OK)) {
torture_comment(tctx, "Failed to create file\n");
- correct = false;
+ ret = false;
goto done;
}