From c38678d14b87f8e2d4f0d610d0aa61c656f17539 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 16 Sep 2002 06:22:25 +0000 Subject: Apply vodz' last_patch52 --- console-tools/chvt.c | 2 +- console-tools/deallocvt.c | 2 +- console-tools/setkeycodes.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'console-tools') diff --git a/console-tools/chvt.c b/console-tools/chvt.c index c76e9c780..8136f1c15 100644 --- a/console-tools/chvt.c +++ b/console-tools/chvt.c @@ -24,7 +24,7 @@ int chvt_main(int argc, char **argv) if ((argc != 2) || (**(argv + 1) == '-')) show_usage(); - fd = get_console_fd("/dev/console"); + fd = get_console_fd(); num = atoi(argv[1]); if (ioctl(fd, VT_ACTIVATE, num)) perror_msg_and_die("VT_ACTIVATE"); diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c index 15cd0c9b9..b7dcc9e22 100644 --- a/console-tools/deallocvt.c +++ b/console-tools/deallocvt.c @@ -21,7 +21,7 @@ int deallocvt_main(int argc, char *argv[]) if (argc > 2) show_usage(); - fd = get_console_fd("/dev/console"); + fd = get_console_fd(); if (argc == 1) { /* deallocate all unused consoles */ diff --git a/console-tools/setkeycodes.c b/console-tools/setkeycodes.c index c3c7e09aa..85612c8b1 100644 --- a/console-tools/setkeycodes.c +++ b/console-tools/setkeycodes.c @@ -46,7 +46,7 @@ setkeycodes_main(int argc, char** argv) show_usage(); } - fd = get_console_fd("/dev/console"); + fd = get_console_fd(); while (argc > 2) { a.keycode = atoi(argv[2]); -- cgit v1.2.3