aboutsummaryrefslogtreecommitdiff
path: root/console-tools
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-25 23:21:05 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-25 23:21:05 +0000
commit377526f2266c1473e0c699408c59a269c839263a (patch)
tree71e46e02914c97077eaa77e12a726b29240b27f6 /console-tools
parent3c705200344cd09aa84e28e3c13e3595b3e764fb (diff)
downloadbusybox-w32-377526f2266c1473e0c699408c59a269c839263a.tar.gz
busybox-w32-377526f2266c1473e0c699408c59a269c839263a.tar.bz2
busybox-w32-377526f2266c1473e0c699408c59a269c839263a.zip
add NOMMU fixme's; move move_fd from runit_lib to libbb; nuke fd_copy
git-svn-id: svn://busybox.net/trunk/busybox@18237 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'console-tools')
-rw-r--r--console-tools/openvt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/console-tools/openvt.c b/console-tools/openvt.c
index eb9f49fe2..0584584df 100644
--- a/console-tools/openvt.c
+++ b/console-tools/openvt.c
@@ -22,8 +22,9 @@ int openvt_main(int argc, char **argv)
22 bb_show_usage(); 22 bb_show_usage();
23 } 23 }
24 /* check for illegal vt number: < 1 or > 63 */ 24 /* check for illegal vt number: < 1 or > 63 */
25 sprintf(vtname, VC_FORMAT, (int)xatoul_range(argv[1], 1, 63)); 25 sprintf(vtname, VC_FORMAT, (int)xatou_range(argv[1], 1, 63));
26 26
27//FIXME NOMMU
27 if (fork() == 0) { 28 if (fork() == 0) {
28 /* child */ 29 /* child */
29 /* leave current vt (controlling tty) */ 30 /* leave current vt (controlling tty) */