diff options
Diffstat (limited to 'util-linux/more.c')
-rw-r--r-- | util-linux/more.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index efceb71ec..359571397 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -85,8 +85,7 @@ int more_main(int argc UNUSED_PARAM, char **argv) | |||
85 | cin_fileno = fileno(cin); | 85 | cin_fileno = fileno(cin); |
86 | getTermSettings(cin_fileno, &initial_settings); | 86 | getTermSettings(cin_fileno, &initial_settings); |
87 | new_settings = initial_settings; | 87 | new_settings = initial_settings; |
88 | new_settings.c_lflag &= ~ICANON; | 88 | new_settings.c_lflag &= ~(ICANON | ECHO); |
89 | new_settings.c_lflag &= ~ECHO; | ||
90 | new_settings.c_cc[VMIN] = 1; | 89 | new_settings.c_cc[VMIN] = 1; |
91 | new_settings.c_cc[VTIME] = 0; | 90 | new_settings.c_cc[VTIME] = 0; |
92 | setTermSettings(cin_fileno, &new_settings); | 91 | setTermSettings(cin_fileno, &new_settings); |