git-daemon: SysV needs the signal handler reinstated.

Fixes the bug on (amongst others) Solaris that only the first
child ever is reaped.

Signed-off-by: Stephen R. van den Berg <srb@cuci.nl>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Stephen R. van den Berg 2008-08-12 21:36:13 +02:00 коммит произвёл Junio C Hamano
Родитель 04c6e9e9ca
Коммит bd7b371e9c
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -794,6 +794,7 @@ static void child_handler(int signo)
}
break;
}
signal(SIGCHLD, child_handler);
}
static int set_reuse_addr(int sockfd)