From 297553b6abd759306875c4c6f47fa1835e32fa05 Mon Sep 17 00:00:00 2001 From: Michael Vrable Date: Wed, 30 Jul 2008 13:06:54 -0700 Subject: [PATCH] Fix typo in restore.pl. --- contrib/restore.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.20.1