ttypo flags => flag - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 30968c3fe914232886455cd67d66541fe6ea7c5f
(DIR) parent 100d566802109caef95a245fe909efa3431837c6
(HTM) Author: rsc <devnull@localhost>
Date: Tue, 4 Jan 2005 21:27:02 +0000
ttypo flags => flag
Diffstat:
M src/cmd/9term/SunOS.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/cmd/9term/SunOS.c b/src/cmd/9term/SunOS.c
t@@ -67,7 +67,7 @@ isecho(int fd)
if(debug) fprint(2, "israw %c%c\n",
ttmode.c_lflag&ICANON ? 'c' : '-',
ttmode.c_lflag&ECHO ? 'e' : '-');
- return (ttmode.c_lflag&ICANON && ttmode.c_lflags&ECHO);
+ return (ttmode.c_lflag&ICANON && ttmode.c_lflag&ECHO);
}
int