summaryrefslogtreecommitdiffstats
path: root/source/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
commit5fbfaa687a3674287eeadd205f56b2b253a9e2a9 (patch)
treed63577aeb4b5d42c18b704f3f842a9f8224fc185 /source/lib
parente05eb1437054286f14714c46099e867a396dac7d (diff)
downloadsamba-5fbfaa687a3674287eeadd205f56b2b253a9e2a9.tar.gz
samba-5fbfaa687a3674287eeadd205f56b2b253a9e2a9.tar.xz
samba-5fbfaa687a3674287eeadd205f56b2b253a9e2a9.zip
updating release notes & merging Derrel Lipman's libsmbclient patch from HEAD
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/util_sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util_sock.c b/source/lib/util_sock.c
index a275ddabb9a..19fb41f6ca3 100644
--- a/source/lib/util_sock.c
+++ b/source/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;
}