diff options
author | Gerald Carter <jerry@samba.org> | 2005-10-21 02:14:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:09 -0500 |
commit | cd310c19cefddc799ec5f8b374bc9c5ea9dec5f1 (patch) | |
tree | 4805d1e6aa9fd47dccaa84de2d21488eda0b3a75 /source3/libsmb | |
parent | 0feff5b60454d7b8c935f61ccbd6c43605901013 (diff) | |
download | samba-cd310c19cefddc799ec5f8b374bc9c5ea9dec5f1.tar.gz samba-cd310c19cefddc799ec5f8b374bc9c5ea9dec5f1.tar.bz2 samba-cd310c19cefddc799ec5f8b374bc9c5ea9dec5f1.zip |
r11240: * fix invalid read reported by valgrind in the
spoolss backchannel connection by rewriting
spoolss_connect_to_client(). Ensure that we
save the cli_state* in the rpc_pipe_client struct.
* fix typo in debug message in cli_start_connection"
(This used to be commit 18400f96628ffdd332c2fb2aa52b5e9aee5cb3ce)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/cliconnect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c index 7ecc769517..8118f073df 100644 --- a/source3/libsmb/cliconnect.c +++ b/source3/libsmb/cliconnect.c @@ -1388,7 +1388,7 @@ again: DEBUG(3,("Connecting to host=%s\n", dest_host)); if (!cli_connect(cli, dest_host, &ip)) { - DEBUG(1,("cli_full_connection: failed to connect to %s (%s)\n", + DEBUG(1,("cli_start_connection: failed to connect to %s (%s)\n", nmb_namestr(&called), inet_ntoa(ip))); cli_shutdown(cli); return NT_STATUS_UNSUCCESSFUL; |