author | Lars Hjemli <larsh@slackbox.hjemli.net> | 2009-09-06 17:33:10 (UTC) |
---|---|---|
committer | Lars Hjemli <larsh@slackbox.hjemli.net> | 2009-09-06 17:33:10 (UTC) |
commit | b507252b469333d06afff0888d466e39124a7e07 (patch) (side-by-side diff) | |
tree | 05b98ce7a9b600679fd4fad437459e25c60d194a | |
parent | 011f2e9bdddcbfe65da397629bca87d167313a28 (diff) | |
download | cgit-b507252b469333d06afff0888d466e39124a7e07.zip cgit-b507252b469333d06afff0888d466e39124a7e07.tar.gz cgit-b507252b469333d06afff0888d466e39124a7e07.tar.bz2 |
ui-plain.c: only return the blob with the specified path
When a path to a directory was specified for the 'plain'
view, each blob in the directory used to be returned to
the client. This patch fixes the issue by matching the
path of each blob against the requested path.
Noticed-by: Lars Stoltenow <penma@penma.de>
Signed-off-by: Lars Hjemli <larsh@slackbox.hjemli.net>
-rw-r--r-- | ui-plain.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,25 +37,26 @@ static void print_object(const unsigned char *sha1, const char *path) cgit_print_http_headers(&ctx); html_raw(buf, size); match = 1; } static int walk_tree(const unsigned char *sha1, const char *base, int baselen, const char *pathname, unsigned mode, int stage, void *cbdata) { 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; } void cgit_print_plain(struct cgit_context *ctx) { const char *rev = ctx->qry.sha1; unsigned char sha1[20]; struct commit *commit; const char *paths[] = {ctx->qry.path, NULL}; |