diff options
author | Volker Lendecke <vl@samba.org> | 2009-01-22 12:13:29 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-01-22 12:13:55 +0100 |
commit | 3b34486f6aaeb81376d9522a01bc6b69d34b4572 (patch) | |
tree | 1a5d41252ca8b01a5ff0ca9ac08c62b04caef0a7 | |
parent | 3662c2b0f648d1719cbb26f9abfc61dbe03f8a2a (diff) | |
download | samba-3b34486f6aaeb81376d9522a01bc6b69d34b4572.tar.gz samba-3b34486f6aaeb81376d9522a01bc6b69d34b4572.tar.bz2 samba-3b34486f6aaeb81376d9522a01bc6b69d34b4572.zip |
Actually complete 3662c2b...
-rw-r--r-- | source3/lib/netapi/cm.c | 3 | ||||
-rw-r--r-- | source3/rpcclient/rpcclient.c | 6 | ||||
-rw-r--r-- | source3/utils/net_rpc.c | 2 |
3 files changed, 5 insertions, 6 deletions
diff --git a/source3/lib/netapi/cm.c b/source3/lib/netapi/cm.c index e616a2509f..d5ef09d831 100644 --- a/source3/lib/netapi/cm.c +++ b/source3/lib/netapi/cm.c @@ -184,8 +184,7 @@ WERROR libnetapi_open_pipe(struct libnetapi_ctx *ctx, status = pipe_cm_open(ctx, cli, interface, &result); if (!NT_STATUS_IS_OK(status)) { libnetapi_set_error_string(ctx, "failed to open PIPE %s: %s", - cli_get_pipe_name_from_iface(debug_ctx(), cli, - interface), + cli_get_pipe_name_from_iface(debug_ctx(), interface), get_friendly_nt_error_msg(status)); return WERR_DEST_NOT_FOUND; } diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 7e31862c34..050e78d274 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -620,7 +620,7 @@ static NTSTATUS do_cmd(struct cli_state *cli, DEBUG(0, ("Could not initialise %s. Invalid " "auth type %u\n", cli_get_pipe_name_from_iface( - debug_ctx(), cli, + debug_ctx(), cmd_entry->interface), pipe_default_auth_type )); return NT_STATUS_UNSUCCESSFUL; @@ -628,7 +628,7 @@ static NTSTATUS do_cmd(struct cli_state *cli, if (!NT_STATUS_IS_OK(ntresult)) { DEBUG(0, ("Could not initialise %s. Error was %s\n", cli_get_pipe_name_from_iface( - debug_ctx(), cli, + debug_ctx(), cmd_entry->interface), nt_errstr(ntresult) )); return ntresult; @@ -658,7 +658,7 @@ static NTSTATUS do_cmd(struct cli_state *cli, if (!NT_STATUS_IS_OK(ntresult)) { DEBUG(0, ("Could not initialise credentials for %s.\n", cli_get_pipe_name_from_iface( - debug_ctx(), cli, + debug_ctx(), cmd_entry->interface))); return ntresult; } diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index c000b58098..0f59f02746 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -182,7 +182,7 @@ int run_rpc_command(struct net_context *c, if (!NT_STATUS_IS_OK(nt_status)) { DEBUG(0, ("Could not initialise pipe %s. Error was %s\n", cli_get_pipe_name_from_iface( - debug_ctx(), cli, interface), + debug_ctx(), interface), nt_errstr(nt_status) )); cli_shutdown(cli); return -1; |