From: Jorrit Herder Date: Thu, 4 Aug 2005 17:00:18 +0000 (+0000) Subject: Fix. Names were not showing. X-Git-Tag: v3.1.0~452 X-Git-Url: http://zhaoyanbai.com/repos/dnssec-importkey.html?a=commitdiff_plain;h=8cb902dce3be98399f2c72274c87c8f76548c28a;p=minix.git Fix. Names were not showing. --- diff --git a/etc/usr/rc b/etc/usr/rc index 31daf1da7..88f1f3db2 100644 --- a/etc/usr/rc +++ b/etc/usr/rc @@ -12,12 +12,10 @@ esac disabled() { - service=$1 - ifs="$IFS"; IFS=, - for name in `sysenv disable` + for skip in `sysenv disable` do - if [ "$name" = "$service" ] + if [ "$skip" = "$1" ] then IFS="$ifs"; unset ifs return 0