From d80f078647c62b6d8e66a717ba67e36cc1107f4b Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 28 May 2002 03:15:09 +0000 Subject: Separate error handling for cli_full_connection() and cli_nt_session_open() (This used to be commit 6f269de03e91b823a30a2a12e41f25f1fa050870) --- source3/python/py_common.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'source3/python') diff --git a/source3/python/py_common.c b/source3/python/py_common.c index d81e141e9c..eb36fc552c 100644 --- a/source3/python/py_common.c +++ b/source3/python/py_common.c @@ -183,10 +183,15 @@ struct cli_state *open_pipe_creds(char *server, PyObject *creds, &cli, global_myname, server, &server_ip, 0, "IPC$", "IPC", username, domain, password, strlen(password)); - if (!NT_STATUS_IS_OK(result) || !cli_nt_session_open(cli, pipe_name)) { + if (!NT_STATUS_IS_OK(result)) { + *errstr = strdup("error connecting to IPC$ pipe"); + return NULL; + } + + if (!cli_nt_session_open(cli, pipe_name)) { cli_shutdown(cli); free(cli); - *errstr = strdup("pipe not available"); + asprintf(errstr, "error opening %s", pipe_name); return NULL; } -- cgit