summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-03-19 16:22:47 +0000
committerGerald Carter <jerry@samba.org>2004-03-19 16:22:47 +0000
commit56ce6136792478c63d371a7b187c1318043e081f (patch)
treefba69d1c6080674e3056661f3c79c276c5672f44 /source3/lib
parentebf27cf5a12711ea12058876e609864ad642b53a (diff)
downloadsamba-56ce6136792478c63d371a7b187c1318043e081f.tar.gz
samba-56ce6136792478c63d371a7b187c1318043e081f.tar.bz2
samba-56ce6136792478c63d371a7b187c1318043e081f.zip
updating release notes & merging Derrel Lipman's libsmbclient patch from HEAD
(This used to be commit 5fbfaa687a3674287eeadd205f56b2b253a9e2a9)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util_sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c
index a275ddabb9..19fb41f6ca 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -714,7 +714,7 @@ int open_socket_out(int type, struct in_addr *addr, int port ,int timeout)
/* create a socket to write to */
res = socket(PF_INET, type, 0);
if (res == -1) {
- DEBUG(0,("socket error\n"));
+ DEBUG(0,("socket error (%s)\n", strerror(errno)));
return -1;
}