diff options
author | Michael Kaufmann <mail@michael-kaufmann.ch> | 2015-07-25 00:46:01 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-07-25 00:46:01 +0200 |
commit | c5d060cab47037163fa803a598fedd9e989ca83b (patch) | |
tree | c9808861f8835d4bc12e7ce9e0858a05d32f477c /lib/http_chunks.c | |
parent | 98835eed29cd1f3451f0fb16ce1d4551a0e07df4 (diff) | |
download | curl-c5d060cab47037163fa803a598fedd9e989ca83b.tar.gz |
HTTP: ignore "Content-Encoding: compress"
Currently, libcurl rejects responses with "Content-Encoding: compress"
when CURLOPT_ACCEPT_ENCODING is set to "". I think that libcurl should
treat the Content-Encoding "compress" the same as other
Content-Encodings that it does not support, e.g. "bzip2". That means
just ignoring it.
Diffstat (limited to 'lib/http_chunks.c')
-rw-r--r-- | lib/http_chunks.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/http_chunks.c b/lib/http_chunks.c index 80c0f9548..7e91b37dc 100644 --- a/lib/http_chunks.c +++ b/lib/http_chunks.c @@ -218,7 +218,6 @@ CHUNKcode Curl_httpchunk_read(struct connectdata *conn, (ssize_t)piece); break; - case COMPRESS: default: failf (conn->data, "Unrecognized content encoding type. " |