aboutsummaryrefslogtreecommitdiff
path: root/lib/http.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/http.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/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 32666d82b..3a1f89025 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -964,7 +964,7 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn,
/* send the header to the callback */
writetype = CLIENTWRITE_HEADER;
- if(data->set.http_include_header)
+ if(data->set.include_header)
writetype |= CLIENTWRITE_BODY;
result = Curl_client_write(data, writetype, line_start, perline);