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 |
|
@@ -419,16 +419,22 @@ static void process_request(void *cbdata) |
419 | cgit_print_http_headers(ctx); |
419 | cgit_print_http_headers(ctx); |
420 | cgit_print_docstart(ctx); |
420 | cgit_print_docstart(ctx); |
421 | cgit_print_pageheader(ctx); |
421 | cgit_print_pageheader(ctx); |
422 | cgit_print_error("Invalid request"); |
422 | cgit_print_error("Invalid request"); |
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); |
431 | cgit_print_error(fmt("No repository selected")); |
437 | cgit_print_error(fmt("No repository selected")); |
432 | cgit_print_docend(); |
438 | cgit_print_docend(); |
433 | return; |
439 | return; |
434 | } |
440 | } |
|