aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2012-01-15 23:00:13 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2012-01-15 23:00:13 +0100
commit6e8861b5f139cde297a95e785e7c616cf129df80 (patch)
tree4f4ce792bd441ac9541033e7f6899bedcf2b6d4a /util-linux
parent7ce209b9d4f6053b7e6d07dec66e382bc3614c35 (diff)
downloadbusybox-6e8861b5f139cde297a95e785e7c616cf129df80.tar.gz
*: better comments on termios manipulations. No code changes.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/more.c3
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)
cin_fileno = fileno(cin);
getTermSettings(cin_fileno, &initial_settings);
new_settings = initial_settings;
- new_settings.c_lflag &= ~ICANON;
- new_settings.c_lflag &= ~ECHO;
+ new_settings.c_lflag &= ~(ICANON | ECHO);
new_settings.c_cc[VMIN] = 1;
new_settings.c_cc[VTIME] = 0;
setTermSettings(cin_fileno, &new_settings);