redirect: cleanliness

This commit is contained in:
Jason A. Donenfeld 2015-08-13 11:38:56 +02:00
父節點 622e64d5f2
當前提交 c0b5982303
共有 1 個文件被更改,包括 1 次插入2 次删除

查看文件

@ -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);
}