diff options
Diffstat (limited to 'util-linux')
| -rw-r--r-- | util-linux/more.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index 6cdec729b..780cddf66 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
| @@ -79,9 +79,9 @@ extern int more_main(int argc, char **argv) | |||
| 79 | 79 | ||
| 80 | /* not use inputing from terminal if usage: more > outfile */ | 80 | /* not use inputing from terminal if usage: more > outfile */ |
| 81 | if(isatty(fileno(stdout))) { | 81 | if(isatty(fileno(stdout))) { |
| 82 | cin = fopen("/dev/tty", "r"); | 82 | cin = fopen(CURRENT_TTY, "r"); |
| 83 | if (!cin) | 83 | if (!cin) |
| 84 | cin = xfopen("/dev/console", "r"); | 84 | cin = xfopen(CONSOLE_DEV, "r"); |
| 85 | please_display_more_prompt = 0; | 85 | please_display_more_prompt = 0; |
| 86 | #ifdef BB_FEATURE_USE_TERMIOS | 86 | #ifdef BB_FEATURE_USE_TERMIOS |
| 87 | getTermSettings(fileno(cin), &initial_settings); | 87 | getTermSettings(fileno(cin), &initial_settings); |
