X-Git-Url: https://git.cameronkatri.com/cgit.git/blobdiff_plain/17e3ff42646f182911fd0e5d872082977538db9e..7fdff2460440c09d13fc76af3b75e85434e6f563:/ui-plain.c diff --git a/ui-plain.c b/ui-plain.c index 27c6dae..66cb19c 100644 --- a/ui-plain.c +++ b/ui-plain.c @@ -60,7 +60,8 @@ static int walk_tree(const unsigned char *sha1, const char *base, int baselen, if (S_ISDIR(mode)) return READ_TREE_RECURSIVE; - if (S_ISREG(mode)) + if (S_ISREG(mode) && !strncmp(base, match_path, baselen) && + !strcmp(pathname, match_path + baselen)) print_object(sha1, pathname); return 0; @@ -87,7 +88,7 @@ void cgit_print_plain(struct cgit_context *ctx) return; } match_path = ctx->qry.path; - read_tree_recursive(commit->tree, NULL, 0, 0, paths, walk_tree, NULL); + read_tree_recursive(commit->tree, "", 0, 0, paths, walk_tree, NULL); if (!match) html_status(404, "Not found", 0); }