diff options
author | ache <ache@FreeBSD.org> | 1995-03-29 19:24:46 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-03-29 19:24:46 +0000 |
commit | 49e59cf368589027c0e310ed0c48c7e7f845e9bf (patch) | |
tree | b32c2d14679f4e6f8093da494fe57efea24da4e7 | |
parent | fd3f3cb67500e078355b2ea98d12a5681cb3aa2f (diff) | |
download | FreeBSD-src-49e59cf368589027c0e310ed0c48c7e7f845e9bf.zip FreeBSD-src-49e59cf368589027c0e310ed0c48c7e7f845e9bf.tar.gz |
Oops, fix typing error in prev. commit
-rw-r--r-- | sys/kern/tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index 77dd952..b1a56ce 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)tty.c 8.8 (Berkeley) 1/21/94 - * $Id: tty.c,v 1.39 1995/03/29 18:55:20 ache Exp $ + * $Id: tty.c,v 1.40 1995/03/29 19:22:37 ache Exp $ */ #include "snp.h" @@ -282,7 +282,7 @@ ttyinput(c, tp) err = (ISSET(c, TTY_ERRORMASK)); if (err) { CLR(c, TTY_ERRORMASK); - if (ISSET(err, TTY_BI) { /* Break. */ + if (ISSET(err, TTY_BI)) { /* Break. */ if (ISSET(iflag, IGNBRK)) return (0); else if (ISSET(iflag, BRKINT) && |