|
diff --git a/cgit.c b/cgit.c index 9b4815d..3e7e595 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -107,33 +107,34 @@ static void cgit_print_repo_page(struct cacheitem *item) |
107 | return; |
107 | return; |
108 | } |
108 | } |
109 | |
109 | |
110 | cgit_print_pageheader(cgit_query_page, show_search); |
110 | cgit_print_pageheader(cgit_query_page, show_search); |
111 | |
111 | |
112 | if (!strcmp(cgit_query_page, "log")) { |
112 | if (!strcmp(cgit_query_page, "log")) { |
113 | cgit_print_log(cgit_query_head, cgit_query_ofs, |
113 | cgit_print_log(cgit_query_head, cgit_query_ofs, |
114 | cgit_max_commit_count, cgit_query_search, |
114 | cgit_max_commit_count, cgit_query_search, |
115 | cgit_query_path); |
115 | cgit_query_path); |
116 | } else if (!strcmp(cgit_query_page, "tree")) { |
116 | } else if (!strcmp(cgit_query_page, "tree")) { |
117 | cgit_print_tree(cgit_query_head, cgit_query_sha1, cgit_query_path); |
117 | cgit_print_tree(cgit_query_head, cgit_query_sha1, cgit_query_path); |
118 | } else if (!strcmp(cgit_query_page, "commit")) { |
118 | } else if (!strcmp(cgit_query_page, "commit")) { |
119 | cgit_print_commit(cgit_query_head); |
119 | cgit_print_commit(cgit_query_head); |
120 | } else if (!strcmp(cgit_query_page, "view")) { |
120 | } else if (!strcmp(cgit_query_page, "view")) { |
121 | cgit_print_view(cgit_query_sha1, cgit_query_path); |
121 | cgit_print_view(cgit_query_sha1, cgit_query_path); |
122 | } else if (!strcmp(cgit_query_page, "diff")) { |
122 | } else if (!strcmp(cgit_query_page, "diff")) { |
123 | cgit_print_diff(cgit_query_sha1, cgit_query_sha2, cgit_query_path); |
123 | cgit_print_diff(cgit_query_head, cgit_query_sha1, cgit_query_sha2, |
| |
124 | cgit_query_path); |
124 | } else { |
125 | } else { |
125 | cgit_print_error("Invalid request"); |
126 | cgit_print_error("Invalid request"); |
126 | } |
127 | } |
127 | cgit_print_docend(); |
128 | cgit_print_docend(); |
128 | } |
129 | } |
129 | |
130 | |
130 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) |
131 | static void cgit_fill_cache(struct cacheitem *item, int use_cache) |
131 | { |
132 | { |
132 | static char buf[PATH_MAX]; |
133 | static char buf[PATH_MAX]; |
133 | int stdout2; |
134 | int stdout2; |
134 | |
135 | |
135 | getcwd(buf, sizeof(buf)); |
136 | getcwd(buf, sizeof(buf)); |
136 | item->st.st_mtime = time(NULL); |
137 | item->st.st_mtime = time(NULL); |
137 | |
138 | |
138 | if (use_cache) { |
139 | if (use_cache) { |
139 | stdout2 = chk_positive(dup(STDOUT_FILENO), |
140 | stdout2 = chk_positive(dup(STDOUT_FILENO), |
|