aboutsummaryrefslogtreecommitdiffstats
path: root/ui-diff.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-10-01 11:46:38 +0200
committerLars Hjemli <hjemli@gmail.com>2007-10-01 11:46:38 +0200
commit1a6025b7a515a23ab4c83f4a5da468e00e4f0a38 (patch)
tree897fb29bf0d48a6c472221d6a2a32188dfcf8df9 /ui-diff.c
parentAdd prefix parameter to cgit_diff_tree() (diff)
downloadcgit-1a6025b7a515a23ab4c83f4a5da468e00e4f0a38.tar.xz
cgit-1a6025b7a515a23ab4c83f4a5da468e00e4f0a38.zip
Add prefix parameter to cgit_print_diff()
This allows a diff to be restricted to the path prefix specified in the url. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-diff.c')
-rw-r--r--ui-diff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-diff.c b/ui-diff.c
index 11a2ff8..ba0030f 100644
--- a/ui-diff.c
+++ b/ui-diff.c
@@ -89,7 +89,7 @@ static void filepair_cb(struct diff_filepair *pair)
cgit_print_error("Error running diff");
}
-void cgit_print_diff(const char *new_rev, const char *old_rev)
+void cgit_print_diff(const char *new_rev, const char *old_rev, const char *prefix)
{
unsigned char sha1[20], sha2[20];
enum object_type type;
@@ -133,7 +133,7 @@ void cgit_print_diff(const char *new_rev, const char *old_rev)
}
html("<table class='diff'>");
html("<tr><td>");
- cgit_diff_tree(sha2, sha1, filepair_cb, NULL);
+ cgit_diff_tree(sha2, sha1, filepair_cb, prefix);
html("</td></tr>");
html("</table>");
}