From b29514427364105ba6286ad688d61444eafb22ea Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 30 Aug 1998 12:32:45 +0000 Subject: This should fix the zombie problem that luke noticed. (This used to be commit 425ccf9271ea44879d0940b9d95ae9b8f95aa092) --- source3/lib/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/signal.c b/source3/lib/signal.c index 8f6f5a9cd4..db72b458a7 100644 --- a/source3/lib/signal.c +++ b/source3/lib/signal.c @@ -30,7 +30,7 @@ static void sig_cld(int signum) { while (sys_waitpid((pid_t)-1,(int *)NULL, WNOHANG) > 0) ; - CatchSignal(SIGCLD, SIG_IGN); + CatchSignal(SIGCLD, sig_cld); } -- cgit