Yet another slight bogon that I just noticed needed cleaning up. The for
loop was sloppily written, taking advantage of a default for argument handling which few are probably aware of rather than stating its purpose more explicitly. Can't also help but notice that the fd* entry also contains far more comment lines than actual statements - can we please clean that up? The wt* entry could use a bit of the same.
This commit is contained in:
parent
d7d1005304
commit
d0cc10a88b
@ -106,7 +106,7 @@
|
||||
# perfmon CPU performance-monitoring counters
|
||||
# pci PCI configuration-space access from user mode
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.143 1997/12/29 00:02:18 jkh Exp $
|
||||
# $Id: MAKEDEV,v 1.144 1997/12/29 00:03:36 jkh Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH
|
||||
@ -183,8 +183,7 @@ scsictl=$((1 << 29))
|
||||
disk_umask=037 # allow group operator to read disks
|
||||
tape_umask=017 # allow group operator to read/write tapes
|
||||
|
||||
for i
|
||||
do
|
||||
for i in $*; do
|
||||
case $i in
|
||||
|
||||
all)
|
||||
|
@ -106,7 +106,7 @@
|
||||
# perfmon CPU performance-monitoring counters
|
||||
# pci PCI configuration-space access from user mode
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.143 1997/12/29 00:02:18 jkh Exp $
|
||||
# $Id: MAKEDEV,v 1.144 1997/12/29 00:03:36 jkh Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH
|
||||
@ -183,8 +183,7 @@ scsictl=$((1 << 29))
|
||||
disk_umask=037 # allow group operator to read disks
|
||||
tape_umask=017 # allow group operator to read/write tapes
|
||||
|
||||
for i
|
||||
do
|
||||
for i in $*; do
|
||||
case $i in
|
||||
|
||||
all)
|
||||
|
Loading…
Reference in New Issue
Block a user