From 8cb902dce3be98399f2c72274c87c8f76548c28a Mon Sep 17 00:00:00 2001 From: Jorrit Herder Date: Thu, 4 Aug 2005 17:00:18 +0000 Subject: [PATCH] Fix. Names were not showing. --- etc/usr/rc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 -- 2.44.0