From 42acb00c815f2cca5bd1e3653c9f3a47e9256572 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 11 Nov 2002 23:03:03 +0000 Subject: moved the bools in the connectdata struct into the substruct named ConnectBits where the other bools already are --- lib/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/http.c') diff --git a/lib/http.c b/lib/http.c index 460ce0a86..903deb229 100644 --- a/lib/http.c +++ b/lib/http.c @@ -547,7 +547,7 @@ CURLcode Curl_http(struct connectdata *conn) conn->allocptr.cookie = aprintf("Cookie: %s\015\012", data->set.cookie); } - if(conn->upload_chunky) { + if(conn->bits.upload_chunky) { if(!checkheaders(data, "Transfer-Encoding:")) { te = "Transfer-Encoding: chunked\r\n"; } -- cgit v1.2.3