aboutsummaryrefslogtreecommitdiff
path: root/ui-plain.c
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'ui-plain.c')
-rw-r--r--ui-plain.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/ui-plain.c b/ui-plain.c
index c21d38f..85877d7 100644
--- a/ui-plain.c
+++ b/ui-plain.c
@@ -197,14 +197,7 @@ void cgit_print_plain(struct cgit_context *ctx)
const char *rev = ctx->qry.sha1;
unsigned char sha1[20];
struct commit *commit;
- struct pathspec_item path_items = {
- .match = ctx->qry.path,
- .len = ctx->qry.path ? strlen(ctx->qry.path) : 0
- };
- struct pathspec paths = {
- .nr = 1,
- .items = &path_items
- };
+ const char *paths[] = {ctx->qry.path, NULL};
if (!rev)
rev = ctx->qry.head;
@@ -218,14 +211,14 @@ void cgit_print_plain(struct cgit_context *ctx)
html_status(404, "Not found", 0);
return;
}
- if (!path_items.match) {
- path_items.match = "";
+ if (!paths[0]) {
+ paths[0] = "";
match_baselen = -1;
print_dir(commit->tree->object.sha1, "", 0, "");
}
else
- match_baselen = basedir_len(path_items.match);
- read_tree_recursive(commit->tree, "", 0, 0, &paths, walk_tree, NULL);
+ match_baselen = basedir_len(paths[0]);
+ read_tree_recursive(commit->tree, "", 0, 0, paths, walk_tree, NULL);
if (!match)
html_status(404, "Not found", 0);
else if (match == 2)