diff options
author | Matt Kraai <kraai@debian.org> | 2001-07-23 14:52:08 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-07-23 14:52:08 +0000 |
commit | 439e3df65300100e4b63580141eaa238c30431d5 (patch) | |
tree | f74320f9994faf4d68826c95cb8d043e35d3a685 /console-tools/dumpkmap.c | |
parent | 0139ca92ff4b960e904d18bc0254499e163e2545 (diff) | |
download | busybox-w32-439e3df65300100e4b63580141eaa238c30431d5.tar.gz busybox-w32-439e3df65300100e4b63580141eaa238c30431d5.tar.bz2 busybox-w32-439e3df65300100e4b63580141eaa238c30431d5.zip |
Add support for devfs device names.
Diffstat (limited to 'console-tools/dumpkmap.c')
-rw-r--r-- | console-tools/dumpkmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c index 0da01868b..22652a5e2 100644 --- a/console-tools/dumpkmap.c +++ b/console-tools/dumpkmap.c | |||
@@ -51,9 +51,9 @@ int dumpkmap_main(int argc, char **argv) | |||
51 | show_usage(); | 51 | show_usage(); |
52 | } | 52 | } |
53 | 53 | ||
54 | fd = open("/dev/tty0", O_RDWR); | 54 | fd = open(CURRENT_VC, O_RDWR); |
55 | if (fd < 0) { | 55 | if (fd < 0) { |
56 | perror_msg("Error opening /dev/tty0"); | 56 | perror_msg("Error opening " CURRENT_VC); |
57 | return EXIT_FAILURE; | 57 | return EXIT_FAILURE; |
58 | } | 58 | } |
59 | 59 | ||