From: Andre Date: Sat, 6 May 2006 15:21:10 +0000 (+0200) Subject: Send correct http message. X-Git-Tag: v0.2.12~9 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=333bb9904c21ebde9c6adec17cb18d5c7459783e;ds=sidebyside Send correct http message. Screwed up since the 1.0 vs. 1.1 fix. --- diff --git a/http_recv.c b/http_recv.c index 49c10f95..5f1d7799 100644 --- a/http_recv.c +++ b/http_recv.c @@ -83,7 +83,7 @@ static void http_shutdown(void) static char *make_request_msg(void) { char *ret, *hn = para_hostname(); - ret = make_message("%s\nHost: %s\nUser-Agent: para_recv/%s\n\n\n", + ret = make_message("%s1.0\nHost: %s\nUser-Agent: para_recv/%s\n\n\n", HTTP_GET_MSG, hn, VERSION); free(hn); return ret;