diff options
Diffstat (limited to 'ui-plain.c')
-rw-r--r-- | ui-plain.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ui-plain.c b/ui-plain.c index b73c1cf..2a7b18c 100644 --- a/ui-plain.c +++ b/ui-plain.c | |||
@@ -193,13 +193,14 @@ void cgit_print_plain(void) | |||
193 | if (!path_items.match) { | 193 | if (!path_items.match) { |
194 | path_items.match = ""; | 194 | path_items.match = ""; |
195 | walk_tree_ctx.match_baselen = -1; | 195 | walk_tree_ctx.match_baselen = -1; |
196 | print_dir(&commit->maybe_tree->object.oid, "", 0, ""); | 196 | print_dir(get_commit_tree_oid(commit), "", 0, ""); |
197 | walk_tree_ctx.match = 2; | 197 | walk_tree_ctx.match = 2; |
198 | } | 198 | } |
199 | else | 199 | else |
200 | walk_tree_ctx.match_baselen = basedir_len(path_items.match); | 200 | walk_tree_ctx.match_baselen = basedir_len(path_items.match); |
201 | read_tree_recursive(the_repository, commit->maybe_tree, | 201 | read_tree_recursive(the_repository, |
202 | "", 0, 0, &paths, walk_tree, &walk_tree_ctx); | 202 | repo_get_commit_tree(the_repository, commit), |
203 | "", 0, 0, &paths, walk_tree, &walk_tree_ctx); | ||
203 | if (!walk_tree_ctx.match) | 204 | if (!walk_tree_ctx.match) |
204 | cgit_print_error_page(404, "Not found", "Not found"); | 205 | cgit_print_error_page(404, "Not found", "Not found"); |
205 | else if (walk_tree_ctx.match == 2) | 206 | else if (walk_tree_ctx.match == 2) |