From: Sam Leffler Date: Sun, 7 Aug 1983 02:11:30 +0000 (-0800) Subject: leave SIGCHLD alone X-Git-Tag: BSD-4_2-Snapshot-Development~512 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/987ae09eff7d1643000f703ce651c625a8ee8cfb leave SIGCHLD alone SCCS-vsn: libexec/telnetd/telnetd.c 4.26 --- diff --git a/usr/src/libexec/telnetd/telnetd.c b/usr/src/libexec/telnetd/telnetd.c index 1698d4ccf8..943e5bfe81 100644 --- a/usr/src/libexec/telnetd/telnetd.c +++ b/usr/src/libexec/telnetd/telnetd.c @@ -1,5 +1,5 @@ #ifndef lint -static char sccsid[] = "@(#)telnetd.c 4.25 (Berkeley) 83/07/06"; +static char sccsid[] = "@(#)telnetd.c 4.26 (Berkeley) 83/08/06"; #endif /* @@ -121,7 +121,7 @@ again: if ((pid = fork()) < 0) printf("Out of processes\n"); else if (pid == 0) { - signal(SIGCHLD, SIG_IGN); + signal(SIGCHLD, SIG_DFL); doit(s2, &from); } close(s2);