aboutsummaryrefslogtreecommitdiff
path: root/util-linux/more.c
diff options
context:
space:
mode:
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 c26e4fe54..ff0557d22 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -81,7 +81,7 @@ extern int more_main(int argc, char **argv)
81 if(isatty(fileno(stdout))) { 81 if(isatty(fileno(stdout))) {
82 cin = fopen(CURRENT_TTY, "r"); 82 cin = fopen(CURRENT_TTY, "r");
83 if (!cin) 83 if (!cin)
84 cin = xfopen(CONSOLE_DEV, "r"); 84 cin = bb_xfopen(CONSOLE_DEV, "r");
85 please_display_more_prompt = 0; 85 please_display_more_prompt = 0;
86#ifdef CONFIG_FEATURE_USE_TERMIOS 86#ifdef CONFIG_FEATURE_USE_TERMIOS
87 getTermSettings(fileno(cin), &initial_settings); 87 getTermSettings(fileno(cin), &initial_settings);
@@ -105,7 +105,7 @@ extern int more_main(int argc, char **argv)
105 if (argc == 0) { 105 if (argc == 0) {
106 file = stdin; 106 file = stdin;
107 } else 107 } else
108 file = wfopen(*argv, "r"); 108 file = bb_wfopen(*argv, "r");
109 if(file==0) 109 if(file==0)
110 goto loop; 110 goto loop;
111 111