diff options
author | 1996-11-09 21:50:43 +0000 | |
---|---|---|
committer | 1996-11-09 21:50:43 +0000 | |
commit | cc9672b1b7222bca7718ac50d6b866ff600c4f73 (patch) | |
tree | 15b87fa9123fe51bafb3dedeee937fc6a002311e | |
parent | By default, run telnetd with -k (no auto kludge) (diff) | |
download | wireguard-openbsd-cc9672b1b7222bca7718ac50d6b866ff600c4f73.tar.xz wireguard-openbsd-cc9672b1b7222bca7718ac50d6b866ff600c4f73.zip |
Break shall be handled as data == 0 and FE bit set; from Theo
-rw-r--r-- | sys/dev/ic/com.c | 3 | ||||
-rw-r--r-- | sys/dev/isa/com.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index 1a4748a826e..f37d5ce0a5d 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.25 1996/10/30 15:01:49 niklas Exp $ */ +/* $OpenBSD: com.c,v 1.26 1996/11/09 21:50:43 tholo Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /*- @@ -1562,6 +1562,7 @@ comintr(arg) goto next; } #endif + data = 0; } if (p >= sc->sc_ibufend) { sc->sc_floods++; diff --git a/sys/dev/isa/com.c b/sys/dev/isa/com.c index 1a4748a826e..f37d5ce0a5d 100644 --- a/sys/dev/isa/com.c +++ b/sys/dev/isa/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.25 1996/10/30 15:01:49 niklas Exp $ */ +/* $OpenBSD: com.c,v 1.26 1996/11/09 21:50:43 tholo Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /*- @@ -1562,6 +1562,7 @@ comintr(arg) goto next; } #endif + data = 0; } if (p >= sc->sc_ibufend) { sc->sc_floods++; |