summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>2000-03-14 21:11:06 +0000
committerLuke Leighton <lkcl@samba.org>2000-03-14 21:11:06 +0000
commit6b4691123560eafc29b55c93798c263f772afd17 (patch)
tree06f9212ba5e3353ade4c1f74bd99e78f7feb436a
parent382339e96a2b242b959c610d994ae37472f15053 (diff)
downloadsamba-6b4691123560eafc29b55c93798c263f772afd17.tar.gz
samba-6b4691123560eafc29b55c93798c263f772afd17.tar.xz
samba-6b4691123560eafc29b55c93798c263f772afd17.zip
finally decided to increase debug log level for "socket connect failed"
message from level 0 to level 1.
-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 5a77a003485..681efa0277d 100644
--- a/source/lib/util_sock.c
+++ b/source/lib/util_sock.c
@@ -923,7 +923,7 @@ int open_pipe_sock(char *path)
if (connect(sock, (struct sockaddr*) &sa, sizeof(sa)) < 0)
{
- DEBUG(0,("socket connect to %s failed: %s\n",
+ DEBUG(1,("socket connect to %s failed: %s\n",
sa.sun_path,strerror(errno)));
close(sock);
return -1;