aboutsummaryrefslogtreecommitdiff
path: root/util-linux/more.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-07-23 14:52:08 +0000
committerMatt Kraai <kraai@debian.org>2001-07-23 14:52:08 +0000
commit439e3df65300100e4b63580141eaa238c30431d5 (patch)
treef74320f9994faf4d68826c95cb8d043e35d3a685 /util-linux/more.c
parent0139ca92ff4b960e904d18bc0254499e163e2545 (diff)
downloadbusybox-439e3df65300100e4b63580141eaa238c30431d5.tar.gz
Add support for devfs device names.
Diffstat (limited to 'util-linux/more.c')
-rw-r--r--util-linux/more.c4
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)
/* not use inputing from terminal if usage: more > outfile */
if(isatty(fileno(stdout))) {
- cin = fopen("/dev/tty", "r");
+ cin = fopen(CURRENT_TTY, "r");
if (!cin)
- cin = xfopen("/dev/console", "r");
+ cin = xfopen(CONSOLE_DEV, "r");
please_display_more_prompt = 0;
#ifdef BB_FEATURE_USE_TERMIOS
getTermSettings(fileno(cin), &initial_settings);