commit | 439e3df65300100e4b63580141eaa238c30431d5 | [log] [tgz] |
---|---|---|
author | Matt Kraai <kraai@debian.org> | Mon Jul 23 14:52:08 2001 +0000 |
committer | Matt Kraai <kraai@debian.org> | Mon Jul 23 14:52:08 2001 +0000 |
tree | f74320f9994faf4d68826c95cb8d043e35d3a685 | |
parent | 0139ca92ff4b960e904d18bc0254499e163e2545 [diff] [blame] |
Add support for devfs device names.
diff --git a/console-tools/loadacm.c b/console-tools/loadacm.c index 5dbf03e..3fb4e76 100644 --- a/console-tools/loadacm.c +++ b/console-tools/loadacm.c
@@ -37,9 +37,9 @@ show_usage(); } - fd = open("/dev/tty", O_RDWR); + fd = open(CURRENT_VC, O_RDWR); if (fd < 0) { - perror_msg_and_die("Error opening /dev/tty1"); + perror_msg_and_die("Error opening " CURRENT_VC); } if (screen_map_load(fd, stdin)) {