]> granicus.if.org Git - cgit/commitdiff
redirect: cleanliness
authorJason A. Donenfeld <Jason@zx2c4.com>
Thu, 13 Aug 2015 09:38:56 +0000 (11:38 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Thu, 13 Aug 2015 09:39:23 +0000 (11:39 +0200)
ui-shared.c

index 6be0c2e3297b0cb406bfd6bfff40356dc9ed5e9f..1292ac99d0cf43ce4c5fcf85614aa9db689c7195 100644 (file)
@@ -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);
 }