Merge remote-tracking branch 'kc/new/enh/bug_6540' into kcmaster

This commit is contained in:
Chris Cormack 2011-08-23 15:52:52 +12:00
commit 75a4efa704

View file

@ -112,11 +112,14 @@ while true ; do
done
# Load the configfile given on the command line
if [ -e "$configfile" ]
if [ "$configfile" != "" ]
then
. "$configfile"
else
die "$configfile does not exist.";
if [ -e "$configfile" ]
then
. "$configfile"
else
die "$configfile does not exist.";
fi
fi
# Make sure options from the command line get the highest precedence