From: Michael Adam Date: Tue, 21 Feb 2012 17:00:30 +0000 (+0100) Subject: s4:torture:smb2: move some initialization and call to smb2_create together in durable... X-Git-Tag: samba-4.0.0alpha18~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a36e25716008ad4c90efd8e0ba21522365efce6c;p=thirdparty%2Fsamba.git s4:torture:smb2: move some initialization and call to smb2_create together in durable-open.open test --- diff --git a/source4/torture/smb2/durable_open.c b/source4/torture/smb2/durable_open.c index 29825e0f84f..2d554a395de 100644 --- a/source4/torture/smb2/durable_open.c +++ b/source4/torture/smb2/durable_open.c @@ -1009,8 +1009,6 @@ bool test_durable_open_open(struct torture_context *tctx, smb2_util_lease_state("RH")); io1.in.durable_open = true; - smb2_oplock_create(&io2, fname, SMB2_OPLOCK_LEVEL_NONE); - status = smb2_create(tree1, mem_ctx, &io1); CHECK_STATUS(status, NT_STATUS_OK); h1 = io1.out.file.handle; @@ -1028,6 +1026,8 @@ bool test_durable_open_open(struct torture_context *tctx, tree1 = NULL; /* Open the file in tree2 */ + smb2_oplock_create(&io2, fname, SMB2_OPLOCK_LEVEL_NONE); + status = smb2_create(tree2, mem_ctx, &io2); CHECK_STATUS(status, NT_STATUS_OK); h2 = io2.out.file.handle;