From: Andrew Tridgell Date: Sun, 30 Aug 1998 16:33:48 +0000 (+0000) Subject: a couple of debug lines X-Git-Tag: samba-2.0.0alpha0~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03d343ddf5ef672afb3cf1fa65f86eb2c0a48772;p=thirdparty%2Fsamba.git a couple of debug lines --- diff --git a/source/nmbd/asyncdns.c b/source/nmbd/asyncdns.c index 9926045d821..8f28f515eab 100644 --- a/source/nmbd/asyncdns.c +++ b/source/nmbd/asyncdns.c @@ -136,6 +136,7 @@ void start_async_dns(void) CatchChild(); if (pipe(fd1) || pipe(fd2)) { + DEBUG(0,("can't create asyncdns pipes\n")); return; } @@ -146,6 +147,7 @@ void start_async_dns(void) fd_out = fd2[1]; close(fd1[1]); close(fd2[0]); + DEBUG(0,("started asyncdns process %d\n", child_pid)); return; }