From: Michael Adam Date: Tue, 11 Sep 2012 14:26:44 +0000 (+0200) Subject: s4:torture:smb2: remove an unused variable from the oplock-exclusive2 test X-Git-Tag: samba-4.0.0rc1~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c960e55fbfbc12f85447af04778a7ac5888d499d;p=thirdparty%2Fsamba.git s4:torture:smb2: remove an unused variable from the oplock-exclusive2 test --- diff --git a/source4/torture/smb2/oplock.c b/source4/torture/smb2/oplock.c index 7e0ea7d2e04..ebf24ad6ff3 100644 --- a/source4/torture/smb2/oplock.c +++ b/source4/torture/smb2/oplock.c @@ -432,7 +432,6 @@ static bool test_smb2_oplock_exclusive2(struct torture_context *tctx, NTSTATUS status; bool ret = true; union smb_open io; - union smb_unlink unl; struct smb2_handle h, h1, h2; status = torture_smb2_testdir(tree1, BASEDIR, &h); @@ -487,8 +486,6 @@ static bool test_smb2_oplock_exclusive2(struct torture_context *tctx, /* now we have 2 level II oplocks... */ torture_comment(tctx, "try to unlink it - should cause a break\n"); - unl.unlink.in.pattern = fname; - unl.unlink.in.attrib = 0; status = smb2_util_unlink(tree2, fname); torture_assert_ntstatus_ok(tctx, status, "Error unlinking the file"); torture_wait_for_oplock_break(tctx);