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>
Este commit está contenido en:
John Keeping 2015-08-14 12:47:05 +01:00 cometido por Jason A. Donenfeld
padre 2b3e76a9f9
commit 048f195eaf
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -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);