diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-07-01 21:26:37 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-07-01 21:26:37 +0000 |
| commit | 32f4d1f4c7300a31cc907a104e28afba71d24446 (patch) | |
| tree | 307a01452b6fc0348d00d312bcb1d8bd98bcb7d8 | |
| parent | 4a378e74d5fa272cf7371a701c2af9db5153f2f1 (diff) | |
Notes
| -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. |
