diff options
author | des <des@FreeBSD.org> | 1998-07-03 15:43:20 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 1998-07-03 15:43:20 +0000 |
commit | 2238238604ab5b7dc82602b6f260bfe3c98c879e (patch) | |
tree | 70fff108342f7d727525b01a62e00734c6ab28cb /etc/etc.i386 | |
parent | a13582e5d0cde31cd940b3fe2ee2f3af3f33f570 (diff) | |
download | FreeBSD-src-2238238604ab5b7dc82602b6f260bfe3c98c879e.zip FreeBSD-src-2238238604ab5b7dc82602b6f260bfe3c98c879e.tar.gz |
Not so fast, that was one '0+' too many.
PR: 7124
Diffstat (limited to 'etc/etc.i386')
-rw-r--r-- | etc/etc.i386/MAKEDEV | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.i386/MAKEDEV b/etc/etc.i386/MAKEDEV index 07f4e1e..6dce537 100644 --- a/etc/etc.i386/MAKEDEV +++ b/etc/etc.i386/MAKEDEV @@ -107,7 +107,7 @@ # pci PCI configuration-space access from user mode # ipl ipfilter control devices (ipl, ipnat, ipstate, ipauth) # -# $Id: MAKEDEV,v 1.163 1998/03/27 04:35:10 peter Exp $ +# $Id: MAKEDEV,v 1.164 1998/07/02 07:39:01 des Exp $ # PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH @@ -552,7 +552,7 @@ pty*) case $class in 0|1|2|3|4|5|6|7) umask 0 - eval `echo $offset $name | awk ' { b=0+$1; n=0+$2 } END { \ + eval `echo $offset $name | awk ' { b=0+$1; n=$2 } END { \ for (i = 0; i < 32; i++) { c = substr("0123456789abcdefghijklmnopqrstuv", i + 1, 1); \ printf("mknod tty%s%s c 5 %d; \ |