mirror of https://github.com/mirror/busybox.git
Patch to use xfopen from Jeff Garzik
parent
f6aa13d403
commit
21af752b04
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 New Issue