Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/lib/libutil Pull up revision 1.17 (requested by dogcow):
details: https://anonhg.NetBSD.org/src/rev/b5d0214606d2
branches: netbsd-1-5
changeset: 491750:b5d0214606d2
user: he <he%NetBSD.org@localhost>
date: Tue May 15 21:30:36 2001 +0000
description:
Pull up revision 1.17 (requested by dogcow):
Since pccons is still used on a few ports, ttyv* should be skipped
in pty allocation.
diffstat:
lib/libutil/pty.c | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diffs (30 lines):
diff -r 247fd731b9e3 -r b5d0214606d2 lib/libutil/pty.c
--- a/lib/libutil/pty.c Tue May 15 21:08:14 2001 +0000
+++ b/lib/libutil/pty.c Tue May 15 21:30:36 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pty.c,v 1.14.8.1 2000/07/26 17:26:10 ad Exp $ */
+/* $NetBSD: pty.c,v 1.14.8.2 2001/05/15 21:30:36 he 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.14.8.1 2000/07/26 17:26:10 ad Exp $");
+__RCSID("$NetBSD: pty.c,v 1.14.8.2 2001/05/15 21:30:36 he Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -56,7 +56,10 @@
#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(amaster, aslave, name, termp, winp)
Home |
Main Index |
Thread Index |
Old Index