diff options
author | Tim Potter <tpot@samba.org> | 2003-10-14 02:19:19 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-10-14 02:19:19 +0000 |
commit | 69f0adb13dc88b39cf6f4c8c5ed595c793700a89 (patch) | |
tree | a7ec4e719c8c87bbcd2351083e78a1305f6956d4 | |
parent | 87f7226a0a945fd7b81eba260e72a197f4b2d4c0 (diff) | |
download | samba-69f0adb13dc88b39cf6f4c8c5ed595c793700a89.tar.gz samba-69f0adb13dc88b39cf6f4c8c5ed595c793700a89.tar.bz2 samba-69f0adb13dc88b39cf6f4c8c5ed595c793700a89.zip |
Undo previous commit because it breaks the build.
DEBUG() should not be called in winbind client code as it's actually
dynamically linked by glibc into programs that use the nsswitch
database functions.
(This used to be commit 90380a684af244175d216344101e734c85220a7b)
-rw-r--r-- | source3/nsswitch/wb_common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source3/nsswitch/wb_common.c b/source3/nsswitch/wb_common.c index 468b532cbe..79553e9e4f 100644 --- a/source3/nsswitch/wb_common.c +++ b/source3/nsswitch/wb_common.c @@ -191,8 +191,6 @@ static int winbind_named_pipe_sock(const char *dir) if (connect(fd, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) == -1) { - DEBUG(10, ("error connecting to pipe socket: %s\n", - strerror(errno))); close(fd); return -1; } |