diff options
author | Michael Adam <obnox@samba.org> | 2008-06-24 15:09:37 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-06-26 12:31:11 +0200 |
commit | a8a0dd4241d3717b9b7273ac44de08c24835eeef (patch) | |
tree | 652598863ee31263ab91277499595d891fb29f22 /source3/lib | |
parent | 0412c203867d6f81924f0bb0e033663dac0a33be (diff) | |
download | samba-a8a0dd4241d3717b9b7273ac44de08c24835eeef.tar.gz samba-a8a0dd4241d3717b9b7273ac44de08c24835eeef.tar.bz2 samba-a8a0dd4241d3717b9b7273ac44de08c24835eeef.zip |
ctdbd_connect: bump debug level to 1 for "connect failed" message.
Leave level 0 message for higher level callers.
Michael
(This used to be commit fee770e5d080b0513418e61e469f2824a1d771ec)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/ctdbd_conn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/ctdbd_conn.c b/source3/lib/ctdbd_conn.c index 46936c5f39..e8d3fd1159 100644 --- a/source3/lib/ctdbd_conn.c +++ b/source3/lib/ctdbd_conn.c @@ -136,7 +136,7 @@ static NTSTATUS ctdbd_connect(TALLOC_CTX *mem_ctx, strncpy(addr.sun_path, sockname, sizeof(addr.sun_path)); if (sys_connect(fd, (struct sockaddr *)&addr) == -1) { - DEBUG(0, ("connect(%s) failed: %s\n", sockname, + DEBUG(1, ("connect(%s) failed: %s\n", sockname, strerror(errno))); close(fd); return map_nt_error_from_unix(errno); |