diff options
author | Micah Anderson <micah@riseup.net> | 2009-09-23 16:07:58 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-09-23 16:07:58 -0400 |
commit | f549dc44f65919dde9429f25e0e9de941ff3cebb (patch) | |
tree | 3d7b10d9d34213c56b1af6b05ae95ab8960259bc /handlers | |
parent | fbd0b8742caa0c03dec294e64fdddf28fdf05aff (diff) | |
download | backupninja-f549dc44f65919dde9429f25e0e9de941ff3cebb.tar.gz backupninja-f549dc44f65919dde9429f25e0e9de941ff3cebb.tar.bz2 |
Fix missing $ in variable name, fixes: #1239
Diffstat (limited to 'handlers')
-rw-r--r-- | handlers/rdiff.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |