Unidiff1 files changed, 6 insertions, 0 deletions
|
diff --git a/cgit.c b/cgit.c index 9305d0a..2c3ad73 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -423,8 +423,14 @@ static void process_request(void *cbdata) |
423 | cgit_print_docend(); |
423 | cgit_print_docend(); |
424 | return; |
424 | return; |
425 | } |
425 | } |
426 | |
426 | |
| |
427 | /* If cmd->want_vpath is set, assume ctx->qry.path contains a "virtual" |
| |
428 | * in-project path limit to be made available at ctx->qry.vpath. |
| |
429 | * Otherwise, no path limit is in effect (ctx->qry.vpath = NULL). |
| |
430 | */ |
| |
431 | ctx->qry.vpath = cmd->want_vpath ? ctx->qry.path : NULL; |
| |
432 | |
427 | if (cmd->want_repo && !ctx->repo) { |
433 | if (cmd->want_repo && !ctx->repo) { |
428 | cgit_print_http_headers(ctx); |
434 | cgit_print_http_headers(ctx); |
429 | cgit_print_docstart(ctx); |
435 | cgit_print_docstart(ctx); |
430 | cgit_print_pageheader(ctx); |
436 | cgit_print_pageheader(ctx); |
|