From be5cf236968658263b0be5e1e4742741c70f65f8 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 19 Jul 2009 14:53:11 -0400 Subject: Fix the chain2 test --- source3/torture/torture.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/torture/torture.c') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index f9192b12b7..7185f1c2be 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -5222,7 +5222,9 @@ static bool run_chain2(int dummy) NTSTATUS status; printf("starting chain2 test\n"); - if (!torture_open_connection(&cli1, 0)) { + status = cli_start_connection(&cli1, global_myname(), host, NULL, + port_to_use, Undefined, 0, NULL); + if (!NT_STATUS_IS_OK(status)) { return False; } -- cgit