diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-02-19 23:16:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-02-19 23:16:48 +0000 |
commit | 29e446e508d42b960d4a8a097586606da561c7ab (patch) | |
tree | 87b2163a9e2d03d92cfa6e1bf817aec04fef10fb /lib | |
parent | 10beb36b1cd1479d14b245a922e1ab49d9a8b1f9 (diff) |
Shmulik Regev fixed an issue with multi-pass authentication and compressed
content when libcurl didn't honor the internal ignorebody flag.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/transfer.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/transfer.c b/lib/transfer.c index 2fbc2c615..65c899934 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -1158,12 +1158,14 @@ CURLcode Curl_readwrite(struct connectdata *conn, case DEFLATE: /* Assume CLIENTWRITE_BODY; headers are not encoded. */ - result = Curl_unencode_deflate_write(data, k, nread); + if(!k->ignorebody) + result = Curl_unencode_deflate_write(data, k, nread); break; case GZIP: /* Assume CLIENTWRITE_BODY; headers are not encoded. */ - result = Curl_unencode_gzip_write(data, k, nread); + if(!k->ignorebody) + result = Curl_unencode_gzip_write(data, k, nread); break; case COMPRESS: |