diff options
author | Volker Lendecke <vl@samba.org> | 2010-12-20 15:58:55 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-12-20 17:10:57 +0100 |
commit | 09cccee27302044dd2fa3e94c60bf7854c4d2e45 (patch) | |
tree | 76a3c2c56cadfe63bf69cef01f3a0e8bedc6f6c9 /source3 | |
parent | 9dce43a809eae4b44bf1e2b301844a0753c037e9 (diff) | |
download | samba-09cccee27302044dd2fa3e94c60bf7854c4d2e45.tar.gz samba-09cccee27302044dd2fa3e94c60bf7854c4d2e45.tar.bz2 samba-09cccee27302044dd2fa3e94c60bf7854c4d2e45.zip |
s3: Remove some unused variables
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/trusts_util.c | 3 | ||||
-rw-r--r-- | source3/torture/torture.c | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/source3/libsmb/trusts_util.c b/source3/libsmb/trusts_util.c index e122937d6e..25f97bb488 100644 --- a/source3/libsmb/trusts_util.c +++ b/source3/libsmb/trusts_util.c @@ -148,7 +148,6 @@ bool enumerate_domain_trusts( TALLOC_CTX *mem_ctx, const char *domain, uint32 enum_ctx = 0; struct cli_state *cli = NULL; struct rpc_pipe_client *lsa_pipe = NULL; - bool retry; struct lsa_DomainList dom_list; int i; @@ -167,7 +166,7 @@ bool enumerate_domain_trusts( TALLOC_CTX *mem_ctx, const char *domain, /* setup the anonymous connection */ result = cli_full_connection( &cli, global_myname(), dc_name, &dc_ss, 0, "IPC$", "IPC", - "", "", "", 0, Undefined, &retry); + "", "", "", 0, Undefined, NULL); if ( !NT_STATUS_IS_OK(result) ) goto done; diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 7821f0eaf4..32c2a61434 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -398,7 +398,6 @@ static bool torture_open_connection_share(struct cli_state **c, const char *hostname, const char *sharename) { - bool retry; int flags = 0; NTSTATUS status; @@ -413,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, &retry); + password, flags, signing_state, NULL); 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)); @@ -1454,7 +1453,6 @@ static bool tcon_devtest(struct cli_state *cli, static bool run_tcon_devtype_test(int dummy) { static struct cli_state *cli1 = NULL; - bool retry; int flags = 0; NTSTATUS status; bool ret = True; @@ -1463,7 +1461,7 @@ static bool run_tcon_devtype_test(int dummy) host, NULL, port_to_use, NULL, NULL, username, workgroup, - password, flags, signing_state, &retry); + password, flags, signing_state, NULL); if (!NT_STATUS_IS_OK(status)) { printf("could not open connection\n"); |