moved the bools in the connectdata struct into the substruct named

ConnectBits where the other bools already are
This commit is contained in:
Daniel Stenberg
2002-11-11 23:03:03 +00:00
parent ca6e770837
commit 42acb00c81
6 changed files with 19 additions and 18 deletions

View File

@@ -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";
}