mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-29 12:44:53 +01:00
Use __tty_fileno instead of STDERR_FILENO when detecting window size
changes Reviewed by: Bob Willcox <bob@obiwan.pmr.com>
This commit is contained in:
parent
6b6e05e3ff
commit
1b9498b875
@ -109,7 +109,7 @@ setterm(type)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Try TIOCGWINSZ, and, if it fails, the termcap entry. */
|
/* Try TIOCGWINSZ, and, if it fails, the termcap entry. */
|
||||||
if (ioctl(STDERR_FILENO, TIOCGWINSZ, &win) != -1 &&
|
if (ioctl(__tty_fileno, TIOCGWINSZ, &win) != -1 &&
|
||||||
win.ws_row != 0 && win.ws_col != 0) {
|
win.ws_row != 0 && win.ws_col != 0) {
|
||||||
LINES = win.ws_row;
|
LINES = win.ws_row;
|
||||||
COLS = win.ws_col;
|
COLS = win.ws_col;
|
||||||
|
Loading…
Reference in New Issue
Block a user