aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-04-13 07:37:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-04-13 07:37:28 +0000
commitee7d1d0701e8d7b87b5913c96f713b743196a2b0 (patch)
tree7bfa07d91d10928222e71975d92e21f71d332ac3 /lib/url.c
parent4e3aa250c4ab02a6daaebba3282faf34c89f9ba9 (diff)
remove an long time #defined struct member and use the actual "real" name
instead to make it easier to find/read
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 635a01924..d3ee36469 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -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:
/*