aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2009-09-23 16:07:58 -0400
committerMicah Anderson <micah@riseup.net>2009-09-23 16:07:58 -0400
commitf549dc44f65919dde9429f25e0e9de941ff3cebb (patch)
tree3d7b10d9d34213c56b1af6b05ae95ab8960259bc
parentfbd0b8742caa0c03dec294e64fdddf28fdf05aff (diff)
downloadbackupninja-f549dc44f65919dde9429f25e0e9de941ff3cebb.tar.gz
backupninja-f549dc44f65919dde9429f25e0e9de941ff3cebb.tar.bz2
Fix missing $ in variable name, fixes: #1239
-rw-r--r--handlers/rdiff.in2
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