Preserve IFS correctly

This commit is contained in:
Roy Marples 2007-12-04 14:18:41 +00:00
parent bb2b8f383f
commit ba3248e6d2

View File

@ -573,6 +573,8 @@ ${routes}"
hidefirstroute=true
fi
fi
local OIFS="${IFS}" SIFS=${IFS-y}
local IFS="$__IFS"
for cmd in ${routes}; do
unset IFS
@ -599,7 +601,11 @@ ${routes}"
eend $?
eoutdent
done
unset IFS
if [ "${SIFS}" = "y" ]; then
unset IFS
else
IFS="${OIFS}"
fi
for module in ${MODULES}; do
if type "${module}_post_start" >/dev/null 2>&1; then