diff options
author | Denys Vlasenko | 2012-01-15 23:00:13 +0100 |
---|---|---|
committer | Denys Vlasenko | 2012-01-15 23:00:13 +0100 |
commit | 6e8861b5f139cde297a95e785e7c616cf129df80 (patch) | |
tree | 4f4ce792bd441ac9541033e7f6899bedcf2b6d4a /util-linux | |
parent | 7ce209b9d4f6053b7e6d07dec66e382bc3614c35 (diff) | |
download | busybox-6e8861b5f139cde297a95e785e7c616cf129df80.zip busybox-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.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index efceb71..3595713 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); |