diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-08-20 18:55:25 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-08-20 18:55:25 +0000 |
commit | 62934187ea5d446e8e7d2c0a26e417b36eafa442 (patch) | |
tree | b25a49c0bd2411cca8a19b3b9b62ca8877045918 | |
parent | 25a686efa55ab41a3d2b0b990684d9ad4681e839 (diff) |
Do not mask bit 0x80 in dzcngetc() - we run serial consoles in 8N1.
-rw-r--r-- | sys/arch/vax/dec/dzcons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/dec/dzcons.c b/sys/arch/vax/dec/dzcons.c index f4b37997632..3e40c7c70f8 100644 --- 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); |