diff options
author | dbaker <dbaker@FreeBSD.org> | 2000-02-27 20:07:13 +0000 |
---|---|---|
committer | dbaker <dbaker@FreeBSD.org> | 2000-02-27 20:07:13 +0000 |
commit | a71e988cc9b0b66d3fbc1939ca81b5a797b29bb4 (patch) | |
tree | a56344c96fce00345d01d0c4e7de9d0ba9dcd042 /misc/dnetc | |
parent | a96989a8dcaa9ada3735229f60e38aaa591b132f (diff) | |
download | FreeBSD-ports-a71e988cc9b0b66d3fbc1939ca81b5a797b29bb4.zip FreeBSD-ports-a71e988cc9b0b66d3fbc1939ca81b5a797b29bb4.tar.gz |
Correct a few missed rc5des->dnetc issues from the conversion.
Fix a potential syntax error.
Diffstat (limited to 'misc/dnetc')
-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 e94c2bf..bbbca78 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 |