]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
This should fix the zombie problem that luke noticed.
authorAndrew Tridgell <tridge@samba.org>
Sun, 30 Aug 1998 12:32:45 +0000 (12:32 +0000)
committerAndrew Tridgell <tridge@samba.org>
Sun, 30 Aug 1998 12:32:45 +0000 (12:32 +0000)
source/lib/signal.c

index 8f6f5a9cd4792c6aaf0eb91f0295880b79f8dcdb..db72b458a7a850ae964b8c9442e2d6e6ae868c1d 100644 (file)
@@ -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);
 }