From d096de56b16c50c7cc22df08895dc29567ee15d7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 20 Dec 2010 16:37:23 +0100 Subject: s3: Remove unused "retry" from cli_full_connection --- source3/torture/locktest2.c | 2 +- source3/torture/torture.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/torture') diff --git a/source3/torture/locktest2.c b/source3/torture/locktest2.c index 033fe123ad..782427b8a9 100644 --- a/source3/torture/locktest2.c +++ b/source3/torture/locktest2.c @@ -190,7 +190,7 @@ static struct cli_state *connect_one(char *share) nt_status = cli_full_connection(&c, myname, server_n, NULL, 0, share, "?????", username, lp_workgroup(), password, 0, - Undefined, NULL); + Undefined); if (!NT_STATUS_IS_OK(nt_status)) { DEBUG(0, ("cli_full_connection failed with error %s\n", nt_errstr(nt_status))); diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 32c2a61434..1b492ce736 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -412,7 +412,7 @@ static bool torture_open_connection_share(struct cli_state **c, hostname, NULL, port_to_use, sharename, "?????", username, workgroup, - password, flags, signing_state, NULL); + password, flags, signing_state); if (!NT_STATUS_IS_OK(status)) { printf("failed to open share connection: //%s/%s port:%d - %s\n", hostname, sharename, port_to_use, nt_errstr(status)); @@ -1461,7 +1461,7 @@ static bool run_tcon_devtype_test(int dummy) host, NULL, port_to_use, NULL, NULL, username, workgroup, - password, flags, signing_state, NULL); + password, flags, signing_state); if (!NT_STATUS_IS_OK(status)) { printf("could not open connection\n"); -- cgit