From c069dfed5868129fa2755f26d6170a3eb21e8dbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Fri, 7 Dec 2007 09:58:53 +0000 Subject: [PATCH] add missing location argument --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.c b/http.c index 91e5a252..9cbbac20 100644 --- a/http.c +++ b/http.c @@ -260,7 +260,7 @@ http_redirect(http_connection_t *hc, const char *location) tcp_init_queue(&tq, -1); - tcp_qprintf(&tq, "Please follow "); + tcp_qprintf(&tq, "Please follow ", location); http_printf(hc, "Location: %s\r\n"