From b6c61778d4fa57904d5b818e0ca04292aa1d0335 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Wed, 6 May 2009 16:18:53 -0400 Subject: [PATCH] git-svn: Correctly report max revision when following deleted paths Report the maximum found revision in the range, instead of the minimum changed revision. Signed-off-by: Alex Vandiver Acked-by: Eric Wong --- git-svn.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-svn.perl b/git-svn.perl index 5836ddec8a..eebcf0f20e 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -4471,7 +4471,7 @@ sub gs_fetch_loop_common { my $ok; $self->get_log([$longest_path], $min, $hi, 0, 1, 1, sub { - $ok ||= $_[1]; + $ok = $_[1]; $revs{$_[1]} = _cb(@_) }); if ($ok) { print STDERR "r$min .. r$ok OK\n"; -- 2.11.4.GIT