summaryrefslogtreecommitdiff
path: root/sys/dev/wscons/wsdisplay.c
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2001-02-11 16:43:05 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2001-02-11 16:43:05 +0000
commit3e65c0cd9c1d210c0d82370949ecaf138d93a954 (patch)
tree37436a84f45461c5011ab41c76957ad5c43cfc04 /sys/dev/wscons/wsdisplay.c
parent921e3290bbd4239f2b29c10992e189e282fcdad3 (diff)
Change MAXSCREEN to 12 so ttyC8-b can be used. Previous behavior
only allowed 8 ttys as maximun, despite the WSDISPLAY_DEFAULTSCREENS value. ttyCa-b can't be accessed now but a fix is on the way; aaron@ ok.
Diffstat (limited to 'sys/dev/wscons/wsdisplay.c')
-rw-r--r--sys/dev/wscons/wsdisplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wscons/wsdisplay.c b/sys/dev/wscons/wsdisplay.c
index 7edd2cbaeef..0dc99c226ba 100644
--- a/sys/dev/wscons/wsdisplay.c
+++ b/sys/dev/wscons/wsdisplay.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsdisplay.c,v 1.12 2001/02/10 19:42:06 mickey Exp $ */
+/* $OpenBSD: wsdisplay.c,v 1.13 2001/02/11 16:43:04 fgsch Exp $ */
/* $NetBSD: wsdisplay.c,v 1.37.4.1 2000/06/30 16:27:53 simonb Exp $ */
/*
@@ -107,7 +107,7 @@ static void wsdisplay_closescreen __P((struct wsdisplay_softc *,
struct wsscreen *));
int wsdisplay_delscreen __P((struct wsdisplay_softc *, int, int));
-#define WSDISPLAY_MAXSCREEN 8
+#define WSDISPLAY_MAXSCREEN 12
struct wsdisplay_softc {
struct device sc_dv;