diff options
author | 2001-08-14 19:26:48 +0000 | |
---|---|---|
committer | 2001-08-14 19:26:48 +0000 | |
commit | b4850e55addbc1ac5fc6a4d4990b894ed37c67c9 (patch) | |
tree | 36d02bf55583662bfe5cbb530d6b995f7dfa0ec6 | |
parent | add missing latin-1 chars. -moj (diff) | |
download | wireguard-openbsd-b4850e55addbc1ac5fc6a4d4990b894ed37c67c9.tar.xz wireguard-openbsd-b4850e55addbc1ac5fc6a4d4990b894ed37c67c9.zip |
Allow latin-1 chars. -moj
-rw-r--r-- | sys/dev/wscons/wscons_rops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wscons/wscons_rops.c b/sys/dev/wscons/wscons_rops.c index c398e7a7449..ea78a3205bd 100644 --- a/sys/dev/wscons/wscons_rops.c +++ b/sys/dev/wscons/wscons_rops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wscons_rops.c,v 1.7 2000/08/01 13:51:17 mickey Exp $ */ +/* $OpenBSD: wscons_rops.c,v 1.8 2001/08/14 19:26:48 maja Exp $ */ /* $NetBSD: wscons_rops.c,v 1.6 2000/03/30 12:45:44 augustss Exp $ */ /* @@ -102,7 +102,7 @@ rcons_mapchar(id, uni, index) unsigned int *index; { - if (uni < 128) { + if (uni < 256) { *index = uni; return (5); } |