diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-09-16 06:22:25 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-09-16 06:22:25 +0000 |
commit | 338268d09fa2c32ee8c8da0525b366315c4a59c6 (patch) | |
tree | 8a08f41faae7672a634f32234dee4b5308cda39c /libbb | |
parent | a00029afbd04ad33db848f5a20d385f9e4f80800 (diff) | |
download | busybox-w32-338268d09fa2c32ee8c8da0525b366315c4a59c6.tar.gz busybox-w32-338268d09fa2c32ee8c8da0525b366315c4a59c6.tar.bz2 busybox-w32-338268d09fa2c32ee8c8da0525b366315c4a59c6.zip |
Apply vodz' last_patch52
git-svn-id: svn://busybox.net/trunk/busybox@5496 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/get_console.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libbb/get_console.c b/libbb/get_console.c index 04a6bd1a6..794888fa7 100644 --- a/libbb/get_console.c +++ b/libbb/get_console.c | |||
@@ -36,7 +36,7 @@ static const int KDGKBTYPE = 0x4B33; /* get keyboard type */ | |||
36 | static const int KB_84 = 0x01; | 36 | static const int KB_84 = 0x01; |
37 | static const int KB_101 = 0x02; /* this is what we always answer */ | 37 | static const int KB_101 = 0x02; /* this is what we always answer */ |
38 | 38 | ||
39 | int is_a_console(int fd) | 39 | static int is_a_console(int fd) |
40 | { | 40 | { |
41 | char arg; | 41 | char arg; |
42 | 42 | ||
@@ -82,17 +82,14 @@ static int open_a_console(char *fnam) | |||
82 | * if tty_name is non-NULL, try this one instead. | 82 | * if tty_name is non-NULL, try this one instead. |
83 | */ | 83 | */ |
84 | 84 | ||
85 | int get_console_fd(char *tty_name) | 85 | int get_console_fd(void) |
86 | { | 86 | { |
87 | int fd; | 87 | int fd; |
88 | 88 | ||
89 | if (tty_name) { | 89 | if (-1 == (fd = open_a_console("/dev/console"))) |
90 | if (-1 == (fd = open_a_console(tty_name))) | ||
91 | return -1; | 90 | return -1; |
92 | else | 91 | else |
93 | return fd; | 92 | return fd; |
94 | } | ||
95 | |||
96 | fd = open_a_console(CURRENT_TTY); | 93 | fd = open_a_console(CURRENT_TTY); |
97 | if (fd >= 0) | 94 | if (fd >= 0) |
98 | return fd; | 95 | return fd; |