mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
Patch to use xfopen from Jeff Garzik
This commit is contained in:
parent
f6aa13d403
commit
21af752b04
2 changed files with 2 additions and 2 deletions
2
more.c
2
more.c
|
|
@ -91,7 +91,7 @@ extern int more_main(int argc, char **argv)
|
|||
#ifdef BB_FEATURE_USE_TERMIOS
|
||||
cin = fopen("/dev/tty", "r");
|
||||
if (!cin)
|
||||
cin = fopen("/dev/console", "r");
|
||||
cin = xfopen("/dev/console", "r");
|
||||
getTermSettings(fileno(cin), &initial_settings);
|
||||
new_settings = initial_settings;
|
||||
new_settings.c_cc[VMIN] = 1;
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ extern int more_main(int argc, char **argv)
|
|||
#ifdef BB_FEATURE_USE_TERMIOS
|
||||
cin = fopen("/dev/tty", "r");
|
||||
if (!cin)
|
||||
cin = fopen("/dev/console", "r");
|
||||
cin = xfopen("/dev/console", "r");
|
||||
getTermSettings(fileno(cin), &initial_settings);
|
||||
new_settings = initial_settings;
|
||||
new_settings.c_cc[VMIN] = 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue