From 425ccf9271ea44879d0940b9d95ae9b8f95aa092 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 30 Aug 1998 12:32:45 +0000 Subject: [PATCH] This should fix the zombie problem that luke noticed. --- source/lib/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/signal.c b/source/lib/signal.c index 8f6f5a9cd47..db72b458a7a 100644 --- a/source/lib/signal.c +++ b/source/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); }