Module Name:    src
Committed By:   apb
Date:           Wed Oct 26 09:02:20 UTC 2011

Modified Files:
        src/etc: MAKEDEV.tmpl

Log Message:
Change the pattern for matching ttys to allow any number of digits,
(tty[0-9]*).  This should fix PR 45514.


To generate a diff of this commit:
cvs rdiff -u -r1.144 -r1.145 src/etc/MAKEDEV.tmpl

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/MAKEDEV.tmpl
diff -u src/etc/MAKEDEV.tmpl:1.144 src/etc/MAKEDEV.tmpl:1.145
--- src/etc/MAKEDEV.tmpl:1.144	Wed Oct 12 20:57:55 2011
+++ src/etc/MAKEDEV.tmpl	Wed Oct 26 09:02:20 2011
@@ -1,5 +1,5 @@
 #!/bin/sh -
-#	$NetBSD: MAKEDEV.tmpl,v 1.144 2011/10/12 20:57:55 apb Exp $
+#	$NetBSD: MAKEDEV.tmpl,v 1.145 2011/10/26 09:02:20 apb Exp $
 #
 # Copyright (c) 2003,2007,2008 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -1203,7 +1203,7 @@ tty[0-9]|tty0[0-9])
 	lndev dtyZ$unit dty0${unit}
 	;;
 
-tty0*|tty1*|tty[0-9])
+tty[0-9]*)
 	unit=${i#tty}
 	ounit=00$unit
 	ounit=${ounit#${ounit%??}}

Reply via email to