summaryrefslogtreecommitdiff
path: root/source3/nmbd/asyncdns.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-08-30 16:33:48 +0000
committerAndrew Tridgell <tridge@samba.org>1998-08-30 16:33:48 +0000
commit98b0fafc6132e12bc9b7e39784cb2e221a8a5125 (patch)
treeffa3569f7fcda7272cacfb69ccf76805c51024b5 /source3/nmbd/asyncdns.c
parent998db177ba25d0fb1fc12b1528025bf975b7c6ad (diff)
downloadsamba-98b0fafc6132e12bc9b7e39784cb2e221a8a5125.tar.gz
samba-98b0fafc6132e12bc9b7e39784cb2e221a8a5125.tar.bz2
samba-98b0fafc6132e12bc9b7e39784cb2e221a8a5125.zip
a couple of debug lines
(This used to be commit 03d343ddf5ef672afb3cf1fa65f86eb2c0a48772)
Diffstat (limited to 'source3/nmbd/asyncdns.c')
-rw-r--r--source3/nmbd/asyncdns.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/nmbd/asyncdns.c b/source3/nmbd/asyncdns.c
index 9926045d82..8f28f515ea 100644
--- a/source3/nmbd/asyncdns.c
+++ b/source3/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;
}