aboutsummaryrefslogtreecommitdiffstats
path: root/ui-diff.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-10-01 11:42:19 +0200
committerLars Hjemli <hjemli@gmail.com>2007-10-01 11:42:19 +0200
commitf527a57c8a55f5fd315e1bc1cb338f5f4a9b20ae (patch)
tree086e1afad5762c5b6bb09672b58f2c491ffbbc20 /ui-diff.c
parentAdd support for a renamelimit option in cgitrc (diff)
downloadcgit-f527a57c8a55f5fd315e1bc1cb338f5f4a9b20ae.tar.xz
cgit-f527a57c8a55f5fd315e1bc1cb338f5f4a9b20ae.zip
Add prefix parameter to cgit_diff_tree()
This paramter can be used to restrict a diff to the specified path prefix. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-diff.c')
-rw-r--r--ui-diff.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui-diff.c b/ui-diff.c
index 0be845f..11a2ff8 100644
--- a/ui-diff.c
+++ b/ui-diff.c
@@ -131,10 +131,9 @@ void cgit_print_diff(const char *new_rev, const char *old_rev)
if (!commit2 || parse_commit(commit2))
cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(sha2)));
}
-
html("<table class='diff'>");
html("<tr><td>");
- cgit_diff_tree(sha2, sha1, filepair_cb);
+ cgit_diff_tree(sha2, sha1, filepair_cb, NULL);
html("</td></tr>");
html("</table>");
}