diff options
author | Rob Landley | 2005-09-08 03:27:06 +0000 |
---|---|---|
committer | Rob Landley | 2005-09-08 03:27:06 +0000 |
commit | 9f0e00fc61858a0e3cc6711b78e95c57b484ef7c (patch) | |
tree | c7b8e35296501484d82d6ac84ae1685df3339ccb /console-tools/openvt.c | |
parent | 230b411de87219f8a59e5d4061d7908cd44ed4d7 (diff) | |
download | busybox-9f0e00fc61858a0e3cc6711b78e95c57b484ef7c.zip busybox-9f0e00fc61858a0e3cc6711b78e95c57b484ef7c.tar.gz |
Tito sent more size tweaks.
Diffstat (limited to 'console-tools/openvt.c')
-rw-r--r-- | console-tools/openvt.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/console-tools/openvt.c b/console-tools/openvt.c index 5f24457..d9f49bb 100644 --- a/console-tools/openvt.c +++ b/console-tools/openvt.c @@ -64,10 +64,8 @@ int openvt_main(int argc, char **argv) fd = bb_xopen(vtname, O_RDWR); /* Reassign stdout and sterr */ - close(1); - close(2); - dup(fd); - dup(fd); + dup2(fd, STDOUT_FILENO); + dup2(fd, STDERR_FILENO); execvp(argv[0], argv); _exit(1); |