diff options
author | Richard Sharpe <sharpe@samba.org> | 2004-03-18 17:11:52 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2004-03-18 17:11:52 +0000 |
commit | a650789626f7a546367bf950385bfb3ddb2911ff (patch) | |
tree | 8258b530c9f7d88ba102e4515512f77ee8329449 /source3/rpc_client | |
parent | ef8eae0688a8c9da20c187b9d5cd6a1e4f425142 (diff) | |
download | samba-a650789626f7a546367bf950385bfb3ddb2911ff.tar.gz samba-a650789626f7a546367bf950385bfb3ddb2911ff.tar.bz2 samba-a650789626f7a546367bf950385bfb3ddb2911ff.zip |
Commit Derrell Lipman's changes and fixes to libsmbclient. The build but
I have not tested them beyond building. I did fix the two instances of
safe_strxxx that were introduced.
(This used to be commit bf89adbcb4c77792004e4ea9da248b71b72b7dbb)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index 72546947e4..82a4b21754 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -1443,7 +1443,7 @@ BOOL cli_nt_session_open(struct cli_state *cli, const int pipe_idx) cli->nt_pipe_fnum = (uint16)fnum; } else { if ((fnum = cli_open(cli, pipe_names[pipe_idx].client_pipe, O_CREAT|O_RDWR, DENY_NONE)) == -1) { - DEBUG(0,("cli_nt_session_open: cli_open failed on pipe %s to machine %s. Error was %s\n", + DEBUG(1,("cli_nt_session_open: cli_open failed on pipe %s to machine %s. Error was %s\n", pipe_names[pipe_idx].client_pipe, cli->desthost, cli_errstr(cli))); return False; } |