aboutsummaryrefslogtreecommitdiff
path: root/console-tools/openvt.c
diff options
context:
space:
mode:
Diffstat (limited to 'console-tools/openvt.c')
-rw-r--r--console-tools/openvt.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/console-tools/openvt.c b/console-tools/openvt.c
index 5f244579c..d9f49bbea 100644
--- a/console-tools/openvt.c
+++ b/console-tools/openvt.c
@@ -64,10 +64,8 @@ int openvt_main(int argc, char **argv)
64 fd = bb_xopen(vtname, O_RDWR); 64 fd = bb_xopen(vtname, O_RDWR);
65 65
66 /* Reassign stdout and sterr */ 66 /* Reassign stdout and sterr */
67 close(1); 67 dup2(fd, STDOUT_FILENO);
68 close(2); 68 dup2(fd, STDERR_FILENO);
69 dup(fd);
70 dup(fd);
71 69
72 execvp(argv[0], argv); 70 execvp(argv[0], argv);
73 _exit(1); 71 _exit(1);