diff options
author | Jason A. Donenfeld | 2015-08-13 11:38:56 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2015-08-13 11:39:23 +0200 |
commit | c0b59823035efc136a82a96094d164a979d9b2e9 (patch) | |
tree | 41b9a1402604383a1ab1c36418fb4f98c7f8bf36 /ui-shared.c | |
parent | 622e64d5f2c56543f56438cb7a705c9023bec269 (diff) | |
download | cgit-c0b59823035efc136a82a96094d164a979d9b2e9.tar.gz cgit-c0b59823035efc136a82a96094d164a979d9b2e9.tar.bz2 cgit-c0b59823035efc136a82a96094d164a979d9b2e9.zip |
redirect: cleanliness
Diffstat (limited to 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 3 |
1 files changed, 1 insertions, 2 deletions
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) | |||
706 | void cgit_redirect(const char *url, bool permanent) | 706 | void cgit_redirect(const char *url, bool permanent) |
707 | { | 707 | { |
708 | htmlf("Status: %d %s\n", permanent ? 301 : 302, permanent ? "Moved" : "Found"); | 708 | htmlf("Status: %d %s\n", permanent ? 301 : 302, permanent ? "Moved" : "Found"); |
709 | htmlf("Location: %s\n", url); | 709 | htmlf("Location: %s\n\n", url); |
710 | htmlf("\n"); | ||
711 | exit(0); | 710 | exit(0); |
712 | } | 711 | } |
713 | 712 | ||