diff options
| -rw-r--r-- | usr.sbin/cron/cron/do_command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/cron/cron/do_command.c b/usr.sbin/cron/cron/do_command.c index 4bac47ebc4dc..009d21ba8c12 100644 --- a/usr.sbin/cron/cron/do_command.c +++ b/usr.sbin/cron/cron/do_command.c @@ -109,7 +109,7 @@ child_process(e, u) * use wait() explictly. so we have to disable the signal (which * was inherited from the parent). */ - (void) signal(SIGCHLD, SIG_IGN); + (void) signal(SIGCHLD, SIG_DFL); #else /* on system-V systems, we are ignoring SIGCLD. we have to stop * ignoring it now or the wait() in cron_pclose() won't work. |
