diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-02 18:39:11 -0600 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-01-02 12:48:03 -0600 |
commit | 40acf23a927b7fcabad621cadabb9c7476c8d5e9 (patch) | |
tree | 343de5c85e0bf239d9b22b1009d7df4d70d029ef /source4/torture/libnet | |
parent | 771b347f9b185895390445be96081c781e28a26d (diff) | |
download | samba-40acf23a927b7fcabad621cadabb9c7476c8d5e9.tar.gz samba-40acf23a927b7fcabad621cadabb9c7476c8d5e9.tar.bz2 samba-40acf23a927b7fcabad621cadabb9c7476c8d5e9.zip |
r26645: Janitorial: Fix a couple of warnings.
(This used to be commit a2bc97e8b01ecee48be60823cb19b4e794fb8f93)
Diffstat (limited to 'source4/torture/libnet')
-rw-r--r-- | source4/torture/libnet/libnet_lookup.c | 12 | ||||
-rw-r--r-- | source4/torture/libnet/libnet_share.c | 12 | ||||
-rw-r--r-- | source4/torture/libnet/libnet_user.c | 4 |
3 files changed, 14 insertions, 14 deletions
diff --git a/source4/torture/libnet/libnet_lookup.c b/source4/torture/libnet/libnet_lookup.c index bf3c77fb44..9167d1de3e 100644 --- a/source4/torture/libnet/libnet_lookup.c +++ b/source4/torture/libnet/libnet_lookup.c @@ -36,7 +36,7 @@ bool torture_lookup(struct torture_context *torture) TALLOC_CTX *mem_ctx; struct libnet_context *ctx; struct libnet_Lookup lookup; - struct dcerpc_binding *bind; + struct dcerpc_binding *binding; mem_ctx = talloc_init("test_lookup"); @@ -45,9 +45,9 @@ bool torture_lookup(struct torture_context *torture) lookup.in.hostname = torture_setting_string(torture, "host", NULL); if (lookup.in.hostname == NULL) { - status = torture_rpc_binding(torture, &bind); + status = torture_rpc_binding(torture, &binding); if (NT_STATUS_IS_OK(status)) { - lookup.in.hostname = bind->host; + lookup.in.hostname = binding->host; } } @@ -80,7 +80,7 @@ bool torture_lookup_host(struct torture_context *torture) TALLOC_CTX *mem_ctx; struct libnet_context *ctx; struct libnet_Lookup lookup; - struct dcerpc_binding *bind; + struct dcerpc_binding *binding; mem_ctx = talloc_init("test_lookup_host"); @@ -89,9 +89,9 @@ bool torture_lookup_host(struct torture_context *torture) lookup.in.hostname = torture_setting_string(torture, "host", NULL); if (lookup.in.hostname == NULL) { - status = torture_rpc_binding(torture, &bind); + status = torture_rpc_binding(torture, &binding); if (NT_STATUS_IS_OK(status)) { - lookup.in.hostname = bind->host; + lookup.in.hostname = binding->host; } } diff --git a/source4/torture/libnet/libnet_share.c b/source4/torture/libnet/libnet_share.c index efd53cc079..eb1edff18d 100644 --- a/source4/torture/libnet/libnet_share.c +++ b/source4/torture/libnet/libnet_share.c @@ -121,11 +121,11 @@ bool torture_listshares(struct torture_context *torture) int i; bool ret = true; struct libnet_context* libnetctx; - struct dcerpc_binding *bind; + struct dcerpc_binding *binding; TALLOC_CTX *mem_ctx; mem_ctx = talloc_init("test_listshares"); - status = torture_rpc_binding(torture, &bind); + status = torture_rpc_binding(torture, &binding); if (!NT_STATUS_IS_OK(status)) { ret = false; goto done; @@ -142,7 +142,7 @@ bool torture_listshares(struct torture_context *torture) printf("Testing libnet_ListShare\n"); - share.in.server_name = talloc_asprintf(mem_ctx, "%s", bind->host); + share.in.server_name = talloc_asprintf(mem_ctx, "%s", binding->host); for (i = 0; i < ARRAY_SIZE(levels); i++) { share.in.level = levels[i]; @@ -199,7 +199,7 @@ static bool test_addshare(struct dcerpc_pipe *svc_pipe, TALLOC_CTX *mem_ctx, con bool torture_delshare(struct torture_context *torture) { struct dcerpc_pipe *p; - struct dcerpc_binding *bind; + struct dcerpc_binding *binding; struct libnet_context* libnetctx; const char *host; NTSTATUS status; @@ -207,7 +207,7 @@ bool torture_delshare(struct torture_context *torture) struct libnet_DelShare share; host = torture_setting_string(torture, "host", NULL); - status = torture_rpc_binding(torture, &bind); + status = torture_rpc_binding(torture, &binding); torture_assert_ntstatus_ok(torture, status, "Failed to get binding"); libnetctx = libnet_context_init(NULL, torture->lp_ctx); @@ -223,7 +223,7 @@ bool torture_delshare(struct torture_context *torture) return false; } - share.in.server_name = bind->host; + share.in.server_name = binding->host; share.in.share_name = TEST_SHARENAME; status = libnet_DelShare(libnetctx, torture, &share); diff --git a/source4/torture/libnet/libnet_user.c b/source4/torture/libnet/libnet_user.c index ae87e6da87..6ea670629e 100644 --- a/source4/torture/libnet/libnet_user.c +++ b/source4/torture/libnet/libnet_user.c @@ -461,7 +461,7 @@ static void set_test_changes(TALLOC_CTX *mem_ctx, struct libnet_ModifyUser *r, bool torture_modifyuser(struct torture_context *torture) { NTSTATUS status; - struct dcerpc_binding *bind; + struct dcerpc_binding *binding; struct dcerpc_pipe *p; TALLOC_CTX *prep_mem_ctx; struct policy_handle h; @@ -499,7 +499,7 @@ bool torture_modifyuser(struct torture_context *torture) goto done; } - status = torture_rpc_binding(torture, &bind); + status = torture_rpc_binding(torture, &binding); if (!NT_STATUS_IS_OK(status)) { ret = false; goto done; |