diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-11-09 21:50:44 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-11-09 21:50:44 +0000 |
commit | 75825390d1b805ebf654480b2abc4c9d339ab384 (patch) | |
tree | 5d055bd6fcfdf320631b2e41a8869656da96cec9 /sys | |
parent | 8b900a15b0a4833ddee05bffe091c40a03885fb6 (diff) |
Break shall be handled as data == 0 and FE bit set; from Theo
Diffstat (limited to 'sys')
-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++; |