X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/4c9916043d6aabb8278e0d78f5fa71a59f82889d..651ef79768dde30aabc61189974c9047ee43752f:/cgit.c diff --git a/cgit.c b/cgit.c index bbde64b..d37abc9 100644 --- a/cgit.c +++ b/cgit.c @@ -307,7 +307,16 @@ static void process_request(struct cgit_context *ctx) return; } - if (cmd->want_repo && prepare_repo_cmd(ctx)) + if (cmd->want_repo && !ctx->repo) { + cgit_print_http_headers(ctx); + cgit_print_docstart(ctx); + cgit_print_pageheader(ctx); + cgit_print_error(fmt("No repository selected")); + cgit_print_docend(); + return; + } + + if (ctx->repo && prepare_repo_cmd(ctx)) return; if (cmd->want_layout) {