From: Michael Vrable Date: Wed, 30 Jul 2008 20:06:54 +0000 (-0700) Subject: Fix typo in restore.pl. X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=commitdiff_plain;h=297553b6abd759306875c4c6f47fa1835e32fa05 Fix typo in restore.pl. --- diff --git a/contrib/restore.pl b/contrib/restore.pl index 0af9dea..40ac469 100755 --- a/contrib/restore.pl +++ b/contrib/restore.pl @@ -130,7 +130,7 @@ sub load_ref { if $object_size != $1; ($start, $length) = (0, $1 + 0); } elsif ($range =~ m/^\[(\d+)\]$/) { - ($start, $length) = (0, $3 + 0); + ($start, $length) = (0, $1 + 0); } elsif ($range =~ m/^\[(\d+)\+(\d+)\]$/) { ($start, $length) = ($1 + 0, $2 + 0); } else {