summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--misc/dnetc/files/dnetc.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/dnetc/files/dnetc.sh b/misc/dnetc/files/dnetc.sh
index e94c2bf0230d..bbbca78e85e4 100644
--- a/misc/dnetc/files/dnetc.sh
+++ b/misc/dnetc/files/dnetc.sh
@@ -8,18 +8,18 @@ if [ ! -d $dir ]; then
fi
if [ ! -f $dir/dnetc ]; then
- logger -i "dnetc client doesn't exist. ($dir/rc5des)."
+ logger -i "dnetc client doesn't exist. ($dir/dnetc)."
exit
fi
if [ ! -f $dir/dnetc.ini ]; then
- logger -i "dnetc client config file doesn't exist. ($dir/rc5des.ini)."
+ logger -i "dnetc client config file doesn't exist. ($dir/dnetc.ini)."
exit
fi
email=`grep "^id=" $dir/dnetc.ini|cut -d"=" -f2`
-if [ $email = "rc5@distributed.net" ]; then
+if [ "$email" = "rc5@distributed.net" ]; then
logger -i "dnetc client running with default email address. ($email)"
fi