artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9987464
)
Do not mask bit 0x80 in dzcngetc() - we run serial consoles in 8N1.
author
miod
<miod@openbsd.org>
Wed, 20 Aug 2008 18:55:24 +0000
(18:55 +0000)
committer
miod
<miod@openbsd.org>
Wed, 20 Aug 2008 18:55:24 +0000
(18:55 +0000)
sys/arch/vax/dec/dzcons.c
patch
|
blob
|
history
diff --git
a/sys/arch/vax/dec/dzcons.c
b/sys/arch/vax/dec/dzcons.c
index
f4b3799
..
3e40c7c
100644
(file)
--- a/
sys/arch/vax/dec/dzcons.c
+++ b/
sys/arch/vax/dec/dzcons.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: dzcons.c,v 1.
2 2008/08/20 16:31:41
miod Exp $ */
+/* $OpenBSD: dzcons.c,v 1.
3 2008/08/20 18:55:24
miod Exp $ */
/* $NetBSD: dz_ibus.c,v 1.15 1999/08/27 17:50:42 ragge Exp $ */
/*
* Copyright (c) 1998 Ludd, University of Lule}, Sweden.
@@
-149,7
+149,7
@@
dzcngetc(dev)
s = spltty();
do {
- c = dzcngetc_internal(line)
& 0x7f
;
+ c = dzcngetc_internal(line);
} while (c == 17 || c == 19); /* ignore XON/XOFF */
splx(s);