revert over-zealous pcvt cull; we still need to skip ttyv* whilst pccons uses

ttyv0 on some ports (currently; arm32, bebox, i386, prep).  should fix PR 12862.
This commit is contained in:
lukem 2001-05-10 01:57:47 +00:00
parent f63784bfbe
commit 4db962fc85

View File

@ -1,4 +1,4 @@
/* $NetBSD: pty.c,v 1.16 2000/07/10 11:16:38 ad Exp $ */
/* $NetBSD: pty.c,v 1.17 2001/05/10 01:57:47 lukem Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)pty.c 8.3 (Berkeley) 5/16/94";
#else
__RCSID("$NetBSD: pty.c,v 1.16 2000/07/10 11:16:38 ad Exp $");
__RCSID("$NetBSD: pty.c,v 1.17 2001/05/10 01:57:47 lukem Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@ -56,7 +56,10 @@ __RCSID("$NetBSD: pty.c,v 1.16 2000/07/10 11:16:38 ad Exp $");
#include <unistd.h>
#include <util.h>
#define TTY_LETTERS "pqrstuvwxyzPQRST"
/*
* XXX: `v' removed until no ports are using console devices which use ttyv0
*/
#define TTY_LETTERS "pqrstuwxyzPQRST"
int
openpty(int *amaster, int *aslave, char *name, struct termios *termp,