summaryrefslogtreecommitdiffstats
path: root/lib/ttyutils.c
diff options
context:
space:
mode:
authorKarel Zak2016-06-02 12:31:45 +0200
committerKarel Zak2016-06-02 12:31:45 +0200
commit8f0ac5792191499292a2d23c8ebd743695af70b7 (patch)
tree0f4d515176e0376e9a71fd897d52706ddf740c71 /lib/ttyutils.c
parenttests: check for mount(8) in minix test (diff)
downloadkernel-qcow2-util-linux-8f0ac5792191499292a2d23c8ebd743695af70b7.tar.gz
kernel-qcow2-util-linux-8f0ac5792191499292a2d23c8ebd743695af70b7.tar.xz
kernel-qcow2-util-linux-8f0ac5792191499292a2d23c8ebd743695af70b7.zip
lib/ttyutils: use stdout for get_terminal_width()
We use the function to be sure with *output* width. Note that the current code (with STDIN) is broken because in some situations libsmartcols is not able to detect terminal width and fall back to default 80. Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'lib/ttyutils.c')
-rw-r--r--lib/ttyutils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ttyutils.c b/lib/ttyutils.c
index 1a1d8bc38..4e62c20d6 100644
--- a/lib/ttyutils.c
+++ b/lib/ttyutils.c
@@ -15,11 +15,11 @@ int get_terminal_width(int default_width)
#if defined(TIOCGWINSZ)
struct winsize w_win;
- if (ioctl (STDIN_FILENO, TIOCGWINSZ, &w_win) == 0)
+ if (ioctl (STDOUT_FILENO, TIOCGWINSZ, &w_win) == 0)
width = w_win.ws_col;
#elif defined(TIOCGSIZE)
struct ttysize t_win;
- if (ioctl (STDIN_FILENO, TIOCGSIZE, &t_win) == 0)
+ if (ioctl (STDOUT_FILENO, TIOCGSIZE, &t_win) == 0)
width = t_win.ts_cols;
#endif