diff options
author | Daniel Baker <dbaker@FreeBSD.org> | 2000-02-27 20:07:13 +0000 |
---|---|---|
committer | Daniel Baker <dbaker@FreeBSD.org> | 2000-02-27 20:07:13 +0000 |
commit | 88bbf3b6465c086ae34bf3a96a01a97729839b80 (patch) | |
tree | d44939063d0f7f45d74973a0527852830d099ec8 | |
parent | Woops fix my previous incorrect patch. (diff) |
Correct a few missed rc5des->dnetc issues from the conversion.
Fix a potential syntax error.
Notes
Notes:
svn path=/head/; revision=26378
-rw-r--r-- | misc/dnetc/files/dnetc.sh | 6 |
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 |