diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-05-10 21:26:38 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-05-10 21:26:38 -0300 |
commit | b7a92b20f8c139fff7e0febc0275c25c5c254d94 (patch) | |
tree | 4b8d8f9417d04b8d2de970560fc2b31b654cd9f8 /handlers/rsync.in | |
parent | e22107cf0954f29215052becf848bc28b47ffbe0 (diff) | |
download | backupninja-b7a92b20f8c139fff7e0febc0275c25c5c254d94.tar.gz backupninja-b7a92b20f8c139fff7e0febc0275c25c5c254d94.tar.bz2 |
Fixing typos (#3868)bug/3868
Diffstat (limited to 'handlers/rsync.in')
-rw-r--r-- | handlers/rsync.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/handlers/rsync.in b/handlers/rsync.in index 31449c2..5d8c777 100644 --- a/handlers/rsync.in +++ b/handlers/rsync.in @@ -423,7 +423,7 @@ function rotate_long { fi # Validate created date if [ -z "$created" ] || echo $created | grep -v -q -e '^[0-9]*$'; then - warning "Invalid metatada $created. Skipping rotation." + warning "Invalid metadata $created. Skipping rotation." break fi cutoff_time=$(( now - (seconds*(i-1)) )) @@ -546,7 +546,7 @@ function rotate_long_remote { fi # Validate created date if [ -z "\$created" ] || echo \$created | grep -v -q -e '^[0-9]*$'; then - echo "Warning: Invalid metatada \$created. Skipping rotation." + echo "Warning: Invalid metadata \$created. Skipping rotation." break fi cutoff_time=\$(( now - (seconds*(i-1)) )) |