diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-08-23 16:25:57 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-08-23 16:25:57 +0000 |
commit | c45fbe69f5b7a57fea9ba18cfa47e63b42de7992 (patch) | |
tree | d70cba9dc1ba6f5e4ac1c33a9a30ba1579fe563b /source3/lib | |
parent | 9e21abd3148f3d2911078666e75d5fc7218418eb (diff) | |
download | samba-c45fbe69f5b7a57fea9ba18cfa47e63b42de7992.tar.gz samba-c45fbe69f5b7a57fea9ba18cfa47e63b42de7992.tar.bz2 samba-c45fbe69f5b7a57fea9ba18cfa47e63b42de7992.zip |
better error reporting for servers that don't do port 445
(This used to be commit a896dc299eba12886d800e6c88309d534232cabc)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index f18fa2e019..d7a2a2e7b9 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -889,7 +889,7 @@ connect_again: #endif if (ret < 0) { - DEBUG(1,("error connecting to %s:%d (%s)\n", + DEBUG(2,("error connecting to %s:%d (%s)\n", inet_ntoa(*addr),port,strerror(errno))); close(res); return -1; |