diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-11-11 23:03:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-11-11 23:03:03 +0000 |
commit | 42acb00c815f2cca5bd1e3653c9f3a47e9256572 (patch) | |
tree | e0b717d0b9732617e29de0b5aa967cc1f27440e8 /lib/http.c | |
parent | ca6e77083768858aa34207f8c5dce38b3c05336d (diff) | |
download | curl-42acb00c815f2cca5bd1e3653c9f3a47e9256572.tar.gz |
moved the bools in the connectdata struct into the substruct named
ConnectBits where the other bools already are
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"; } |