redirect: cleanliness

Este commit está contenido en:
Jason A. Donenfeld 2015-08-13 11:38:56 +02:00
padre 622e64d5f2
commit c0b5982303
Se han modificado 1 ficheros con 1 adiciones y 2 borrados

Ver fichero

@ -706,8 +706,7 @@ void cgit_print_http_headers(void)
void cgit_redirect(const char *url, bool permanent) void cgit_redirect(const char *url, bool permanent)
{ {
htmlf("Status: %d %s\n", permanent ? 301 : 302, permanent ? "Moved" : "Found"); htmlf("Status: %d %s\n", permanent ? 301 : 302, permanent ? "Moved" : "Found");
htmlf("Location: %s\n", url); htmlf("Location: %s\n\n", url);
htmlf("\n");
exit(0); exit(0);
} }