From: Micah Anderson Date: Wed, 23 Sep 2009 20:07:58 +0000 (-0400) Subject: Fix missing $ in variable name, fixes: #1239 X-Git-Tag: backupninja-0.9.7~31 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=f549dc44f65919dde9429f25e0e9de941ff3cebb Fix missing $ in variable name, fixes: #1239 --- diff --git a/handlers/rdiff.in b/handlers/rdiff.in index f59d56a..45d5096 100644 --- a/handlers/rdiff.in +++ b/handlers/rdiff.in @@ -59,7 +59,7 @@ function check_consistency() { if [ "$user" == "" ]; then fatal "User must be specified for remote $section." fi - if [ "host" == "" ]; then + if [ "$host" == "" ]; then fatal "Host must be specifed for remote $section." fi fi