Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorLuben Tuikov <ltuikov@yahoo.com>2006-10-11 11:30:05 +0400
committerJunio C Hamano <junkio@cox.net>2006-10-11 12:15:36 +0400
commitd15c55aa052434aee75c73da4ed771af3e3b6f61 (patch)
tree2842c9fd44feaeb4f296547bb86b2700f4f261fd /gitweb
parenteeef88cd20f2965325cde66e97a616bce4a757f0 (diff)
gitweb: blame porcelain: lineno and orig lineno swapped
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 68347ac975..41d047766c 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -2533,7 +2533,7 @@ HTML
while (1) {
$_ = <$fd>;
last unless defined $_;
- my ($full_rev, $lineno, $orig_lineno, $group_size) =
+ my ($full_rev, $orig_lineno, $lineno, $group_size) =
/^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/;
if (!exists $metainfo{$full_rev}) {
$metainfo{$full_rev} = {};