| -rw-r--r-- | ui-shared.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ui-shared.c b/ui-shared.c index 21f581f..5b48734 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -709,9 +709,7 @@ void cgit_print_http_headers(void) void cgit_redirect(const char *url, bool permanent) { htmlf("Status: %d %s\n", permanent ? 301 : 302, permanent ? "Moved" : "Found"); - html("Location: "); - html_url_path(url); - html("\n\n"); + htmlf("Location: %s\n\n", url); exit(0); } |