summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2006-08-26 10:33:17 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-08-26 19:26:42 (GMT)
commit73c9083f52ac918b530c51887bbf5fd0a1119b4c (patch)
treec299d15c9cc9cec25ac4c0dfa330aa054136753c /gitweb
parentb4c27c186f6282ead5d2af0cfd9b6015b011bc38 (diff)
downloadgit-73c9083f52ac918b530c51887bbf5fd0a1119b4c.zip
git-73c9083f52ac918b530c51887bbf5fd0a1119b4c.tar.gz
git-73c9083f52ac918b530c51887bbf5fd0a1119b4c.tar.bz2
gitweb: Remove workaround for git-diff bug fixed in f82cd3c
Remove workaround in git_blobdiff for error in git-diff (showing reversed diff for diff of blobs), corrected in commit f82cd3c Fix "git diff blob1 blob2" showing the diff in reverse. which is post 1.4.2-rc2 commit. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl3
1 files changed, 1 insertions, 2 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index e00a6ed..5d321e9 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -2834,8 +2834,7 @@ sub git_blobdiff {
}
# open patch output
- #open $fd, "-|", $GIT, "diff", '-p', $hash_parent, $hash
- open $fd, "-|", $GIT, "diff", '-p', $hash, $hash_parent
+ open $fd, "-|", $GIT, "diff", '-p', $hash_parent, $hash
or die_error(undef, "Open git-diff failed");
} else {
die_error('404 Not Found', "Missing one of the blob diff parameters")