summaryrefslogtreecommitdiffstats
path: root/source/rpc_client
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-11-03 20:26:24 +0000
committerJeremy Allison <jra@samba.org>2005-11-03 20:26:24 +0000
commite8bb3d8b0b37dc582a61c2682aeb03033ca2316d (patch)
treee75cf15f48469130b9fcfaa33712405721dc50fa /source/rpc_client
parentcf644cbaee77bbf68fb08018c91faaad7e73e8e0 (diff)
downloadsamba-e8bb3d8b0b37dc582a61c2682aeb03033ca2316d.tar.gz
samba-e8bb3d8b0b37dc582a61c2682aeb03033ca2316d.tar.xz
samba-e8bb3d8b0b37dc582a61c2682aeb03033ca2316d.zip
r11491: If we get a reject ensure we're printing out the server/domain/machine
a/c we were asking for. Jeremy.
Diffstat (limited to 'source/rpc_client')
-rw-r--r--source/rpc_client/cli_pipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/rpc_client/cli_pipe.c b/source/rpc_client/cli_pipe.c
index e1e502794c2..bed1ef843a5 100644
--- a/source/rpc_client/cli_pipe.c
+++ b/source/rpc_client/cli_pipe.c
@@ -2430,8 +2430,8 @@ static struct rpc_pipe_client *get_schannel_session_key(struct cli_state *cli,
if (!NT_STATUS_IS_OK(*perr)) {
DEBUG(3,("get_schannel_session_key: rpccli_netlogon_setup_creds "
- "failed with result %s\n",
- nt_errstr(*perr) ));
+ "failed with result %s to server %s, domain %s, machine account %s.\n",
+ nt_errstr(*perr), cli->desthost, domain, machine_account ));
cli_rpc_pipe_close(netlogon_pipe);
return NULL;
}