1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Jonathan Hseu noticed that you couldn't get a header callback unless you

set CURLOPT_WRITEHEADER to non-NULL, even if you didn't care about that
  data. This is now fixed.
This commit is contained in:
Daniel Stenberg 2001-08-06 08:22:26 +00:00
parent 5ab1a10e9c
commit 944f9a73f4

View File

@ -230,7 +230,8 @@ CURLcode Curl_client_write(struct UrlData *data,
return CURLE_WRITE_ERROR; return CURLE_WRITE_ERROR;
} }
} }
if((type & CLIENTWRITE_HEADER) && data->writeheader) { if((type & CLIENTWRITE_HEADER) &&
(data->fwrite_header || data->writeheader) ) {
/* /*
* Write headers to the same callback or to the especially setup * Write headers to the same callback or to the especially setup
* header callback function (added after version 7.7.1). * header callback function (added after version 7.7.1).