fix another typo in previous commit: the version committed was missing the end of the opty) case.
This commit is contained in:
parent
9f05a494a9
commit
85383e6e68
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh -
|
#!/bin/sh -
|
||||||
#
|
#
|
||||||
# $NetBSD: MAKEDEV,v 1.161 2002/02/02 05:55:19 tls Exp $
|
# $NetBSD: MAKEDEV,v 1.162 2002/02/02 05:57:47 tls Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1990 The Regents of the University of California.
|
# Copyright (c) 1990 The Regents of the University of California.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
@ -589,6 +589,10 @@ opty)
|
||||||
mknod ttyp$j c 5 $jn
|
mknod ttyp$j c 5 $jn
|
||||||
mknod ptyp$j c 6 $jn
|
mknod ptyp$j c 6 $jn
|
||||||
done
|
done
|
||||||
|
chgrp wheel ttyp[0-9a-f] ptyp[0-9a-f]
|
||||||
|
chmod 666 ttyp[0-9a-f] ptyp[0-9a-f]
|
||||||
|
;;
|
||||||
|
|
||||||
|
|
||||||
pty*)
|
pty*)
|
||||||
class=${i#pty}
|
class=${i#pty}
|
||||||
|
|
Loading…
Reference in New Issue