Fix. Names were not showing.

This commit is contained in:
Jorrit Herder 2005-08-04 17:00:18 +00:00
parent 40e9875fd6
commit 8cb902dce3

View file

@ -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