| -rw-r--r-- | ui-shared.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 1292ac9..6be0c2e 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -706,7 +706,8 @@ 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"); - htmlf("Location: %s\n\n", url); + htmlf("Location: %s\n", url); + htmlf("\n"); exit(0); } |