Fixes the bug on (amongst others) Solaris that only the first child ever is reaped. Signed-off-by: Stephen R. van den Berg <srb@xxxxxxx> --- daemon.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/daemon.c b/daemon.c index 4540e8d..1c00305 100644 --- a/daemon.c +++ b/daemon.c @@ -794,6 +794,7 @@ static void child_handler(int signo) } break; } + signal(SIGCHLD, child_handler); } static int set_reuse_addr(int sockfd) @@ -947,7 +948,7 @@ static int service_loop(int socknum, int *socklist) pfd[socknum].fd = child_handler_pipe[0]; pfd[socknum].events = POLLIN; - signal(SIGCHLD, child_handler); + child_handler(0); for (;;) { int i; -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html