From c0b59823035efc136a82a96094d164a979d9b2e9 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 13 Aug 2015 11:38:56 +0200 Subject: redirect: cleanliness --- ui-shared.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ui-shared.c') diff --git a/ui-shared.c b/ui-shared.c index 6be0c2e..1292ac9 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -706,8 +706,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"); - htmlf("Location: %s\n", url); - htmlf("\n"); + htmlf("Location: %s\n\n", url); exit(0); } -- cgit v1.2.3-59-g8ed1b