mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 16:38:42 +00:00
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>
This commit is contained in:
parent
2b3e76a9f9
commit
048f195eaf
@ -213,7 +213,7 @@ void cgit_print_snapshot(const char *head, const char *hex,
|
|||||||
if (!hex && dwim) {
|
if (!hex && dwim) {
|
||||||
hex = get_ref_from_filename(ctx.repo->url, filename, f);
|
hex = get_ref_from_filename(ctx.repo->url, filename, f);
|
||||||
if (hex == NULL) {
|
if (hex == NULL) {
|
||||||
html_status(404, "Not found", 0);
|
cgit_print_error_page(404, "Not found", "Not found");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
prefix = xstrdup(filename);
|
prefix = xstrdup(filename);
|
||||||
|
Loading…
Reference in New Issue
Block a user