snapshot: use cgit_print_error_page() instead of html_status()

This provides a formatted error response rather than a simple HTTP
error.

Signed-off-by: John Keeping <john@keeping.me.uk>
jk/collapsible-sections
John Keeping 9 years ago committed by Jason A. Donenfeld
parent 2b3e76a9f9
commit 048f195eaf

@ -213,7 +213,7 @@ void cgit_print_snapshot(const char *head, const char *hex,
if (!hex && dwim) {
hex = get_ref_from_filename(ctx.repo->url, filename, f);
if (hex == NULL) {
html_status(404, "Not found", 0);
cgit_print_error_page(404, "Not found", "Not found");
return;
}
prefix = xstrdup(filename);

Loading…
Cancel
Save