remove an long time #defined struct member and use the actual "real" name

instead to make it easier to find/read
This commit is contained in:
Daniel Stenberg
2004-04-13 07:37:28 +00:00
parent 4e3aa250c4
commit ee7d1d0701
4 changed files with 5 additions and 7 deletions

View File

@@ -454,7 +454,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
/* now, only output this if the header AND body are requested:
*/
writetype = CLIENTWRITE_HEADER;
if (data->set.http_include_header)
if (data->set.include_header)
writetype |= CLIENTWRITE_BODY;
headerlen = k->p - data->state.headerbuff;
@@ -868,7 +868,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
*/
writetype = CLIENTWRITE_HEADER;
if (data->set.http_include_header)
if (data->set.include_header)
writetype |= CLIENTWRITE_BODY;
if(data->set.verbose)