aboutsummaryrefslogtreecommitdiff
path: root/git-svn.perl
diff options
context:
space:
mode:
authorAlex Vandiver <alexmv@MIT.EDU>2009-05-06 16:18:53 -0400
committerEric Wong <normalperson@yhbt.net>2009-05-21 00:31:08 -0700
commitb6c61778d4fa57904d5b818e0ca04292aa1d0335 (patch)
tree4e9cbcad4fcad36d4467bc43478d0ef36e6be77a /git-svn.perl
parentc69700fe042ad2ecf2904a8b7d8eddc6d52b790b (diff)
downloadgit-b6c61778d4fa57904d5b818e0ca04292aa1d0335.tar.gz
git-b6c61778d4fa57904d5b818e0ca04292aa1d0335.tar.xz
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 <alexmv@mit.edu> Acked-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-xgit-svn.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl
index 5836ddec8..eebcf0f20 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";