From a36e25716008ad4c90efd8e0ba21522365efce6c Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 21 Feb 2012 18:00:30 +0100 Subject: s4:torture:smb2: move some initialization and call to smb2_create together in durable-open.open test --- source4/torture/smb2/durable_open.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source4/torture/smb2/durable_open.c b/source4/torture/smb2/durable_open.c index 29825e0f84..2d554a395d 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; -- cgit