summaryrefslogtreecommitdiff
path: root/etc/etc.aviion/MAKEDEV
diff options
context:
space:
mode:
Diffstat (limited to 'etc/etc.aviion/MAKEDEV')
-rw-r--r--etc/etc.aviion/MAKEDEV10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/etc.aviion/MAKEDEV b/etc/etc.aviion/MAKEDEV
index 4c3c0f358c5..e4b2b6697c0 100644
--- a/etc/etc.aviion/MAKEDEV
+++ b/etc/etc.aviion/MAKEDEV
@@ -5,7 +5,7 @@
#
# OpenBSD: etc.aviion/MAKEDEV.md,v 1.15 2012/08/23 06:15:28 deraadt Exp
# OpenBSD: MAKEDEV.common,v 1.60 2012/08/23 06:15:28 deraadt Exp
-# OpenBSD: MAKEDEV.mi,v 1.80 2011/04/18 16:52:10 thib Exp
+# OpenBSD: MAKEDEV.mi,v 1.81 2012/11/05 08:07:09 jasper Exp
# OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp
#
#
@@ -156,19 +156,19 @@ M() {
mkl ${5-666} $1 $2 $3 $4
G=${6:-wheel}
[ "$7" ] && {
- MKlist[${#MKlist[*]}]=";chown $7:$G $1"
+ MKlist[${#MKlist[*]}]="&& chown $7:$G $1"
} || {
case $G in
wheel)
- [ ${#whlist[*]} = 0 ] && whlist[0]=";chgrp wheel"
+ [ ${#whlist[*]} = 0 ] && whlist[0]="&& chgrp wheel"
whlist[${#whlist[*]}]="$1"
;;
operator)
- [ ${#oplist[*]} = 0 ] && oplist[0]=";chgrp operator"
+ [ ${#oplist[*]} = 0 ] && oplist[0]="&& chgrp operator"
oplist[${#oplist[*]}]="$1"
;;
*)
- MKlist[${#MKlist[*]}]=";chgrp $G $1";
+ MKlist[${#MKlist[*]}]="&& chgrp $G $1";
esac
}
return 0