Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.zx2c4.com/cgit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2015-08-13 12:38:56 +0300
committerJason A. Donenfeld <Jason@zx2c4.com>2015-08-13 12:39:23 +0300
commitc0b59823035efc136a82a96094d164a979d9b2e9 (patch)
tree41b9a1402604383a1ab1c36418fb4f98c7f8bf36 /ui-shared.c
parent622e64d5f2c56543f56438cb7a705c9023bec269 (diff)
redirect: cleanliness
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c3
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)
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);
}