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

@@ -455,7 +455,7 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
/*
* Set to include the header in the general data output stream.
*/
data->set.http_include_header = va_arg(param, long)?TRUE:FALSE;
data->set.include_header = va_arg(param, long)?TRUE:FALSE;
break;
case CURLOPT_NOPROGRESS:
/*