aboutsummaryrefslogtreecommitdiff
path: root/util-linux/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/script.c')
-rw-r--r--util-linux/script.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/util-linux/script.c b/util-linux/script.c
index e70294e6c..a6c1ab88a 100644
--- a/util-linux/script.c
+++ b/util-linux/script.c
@@ -87,10 +87,7 @@ int script_main(int argc ATTRIBUTE_UNUSED, char **argv)
87 87
88 /* TODO: SIGWINCH? pass window size changes down to slave? */ 88 /* TODO: SIGWINCH? pass window size changes down to slave? */
89 89
90 child_pid = vfork(); 90 child_pid = xvfork();
91 if (child_pid < 0) {
92 bb_perror_msg_and_die("vfork");
93 }
94 91
95 if (child_pid) { 92 if (child_pid) {
96 /* parent */ 93 /* parent */