Oops, replace a rather important line that was lost in transit 8-(

This commit is contained in:
James Raynard 1996-06-08 15:28:11 +00:00
parent d4aa237228
commit 1638d6b6d5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16228

View file

@ -65,7 +65,8 @@ int system(command)
(void)sigaction(SIGINT, &ign, &intact);
(void)sigaction(SIGQUIT, &ign, &quitact);
(void)sigemptyset(&newsigblock);
sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock);
(void)sigaddset(&newsigblock, SIGCHLD);
(void)sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock);
switch(pid = fork()) {
case -1: /* error */
break;