|
diff --git a/cgit.c b/cgit.c index aee7ba3..3d85a08 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -111,17 +111,17 @@ static void cgit_print_repo_page(struct cacheitem *item) |
111 | cgit_max_commit_count, cgit_query_search); |
111 | cgit_max_commit_count, cgit_query_search); |
112 | } else if (!strcmp(cgit_query_page, "tree")) { |
112 | } else if (!strcmp(cgit_query_page, "tree")) { |
113 | cgit_print_tree(cgit_query_sha1, cgit_query_path); |
113 | cgit_print_tree(cgit_query_sha1, cgit_query_path); |
114 | } else if (!strcmp(cgit_query_page, "commit")) { |
114 | } else if (!strcmp(cgit_query_page, "commit")) { |
115 | cgit_print_commit(cgit_query_sha1); |
115 | cgit_print_commit(cgit_query_sha1); |
116 | } else if (!strcmp(cgit_query_page, "view")) { |
116 | } else if (!strcmp(cgit_query_page, "view")) { |
117 | cgit_print_view(cgit_query_sha1, cgit_query_path); |
117 | cgit_print_view(cgit_query_sha1, cgit_query_path); |
118 | } else if (!strcmp(cgit_query_page, "diff")) { |
118 | } else if (!strcmp(cgit_query_page, "diff")) { |
119 | cgit_print_diff(cgit_query_sha1, cgit_query_sha2); |
119 | cgit_print_diff(cgit_query_sha1, cgit_query_sha2, cgit_query_path); |
120 | } else { |
120 | } else { |
121 | cgit_print_error("Invalid request"); |
121 | cgit_print_error("Invalid request"); |
122 | } |
122 | } |
123 | cgit_print_docend(); |
123 | cgit_print_docend(); |
124 | } |
124 | } |
125 | |
125 | |
126 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) |
126 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) |
127 | { |
127 | { |
|