diff options
author | Volker Lendecke <vl@samba.org> | 2010-12-20 16:37:23 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-12-20 17:10:58 +0100 |
commit | d096de56b16c50c7cc22df08895dc29567ee15d7 (patch) | |
tree | 67ba1c6f457678b3757a209eea526cb9a648f0ad /source3/torture | |
parent | 660190632e4f8ace65f4944f4686ea42444056c0 (diff) | |
download | samba-d096de56b16c50c7cc22df08895dc29567ee15d7.tar.gz samba-d096de56b16c50c7cc22df08895dc29567ee15d7.tar.bz2 samba-d096de56b16c50c7cc22df08895dc29567ee15d7.zip |
s3: Remove unused "retry" from cli_full_connection
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/locktest2.c | 2 | ||||
-rw-r--r-- | source3/torture/torture.c | 4 |
2 files changed, 3 insertions, 3 deletions
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"); |