diff options
Diffstat (limited to 'util-linux/script.c')
-rw-r--r-- | util-linux/script.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util-linux/script.c b/util-linux/script.c index 39ec546a7..2e103fd0f 100644 --- a/util-linux/script.c +++ b/util-linux/script.c @@ -179,7 +179,8 @@ int script_main(int argc UNUSED_PARAM, char **argv) setsid(); ioctl(0, TIOCSCTTY, 0 /* 0: don't forcibly steal */); - /* signal(SIGCHLD, SIG_DFL); - exec does this for us */ + /* Non-ignored signals revert to SIG_DFL on exec anyway */ + /*signal(SIGCHLD, SIG_DFL);*/ execl(shell, shell, shell_opt, shell_arg, NULL); bb_simple_perror_msg_and_die(shell); } |