Browse Source

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>
maint
Stephen R. van den Berg 17 years ago committed by Junio C Hamano
parent
commit
bd7b371e9c
  1. 1
      daemon.c

1
daemon.c

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

static int set_reuse_addr(int sockfd)

Loading…
Cancel
Save