From e99eff4eb0e478824534adf8e86959a43a37f43d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 12 May 2003 12:45:57 +0000 Subject: [PATCH] setting ENCODING to "" means enable-all-you-support --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 85996e2de..62348df3e 100644 --- a/src/main.c +++ b/src/main.c @@ -2952,7 +2952,7 @@ operate(struct Configurable *config, int argc, char *argv[]) /* new in curl 7.10 */ curl_easy_setopt(curl, CURLOPT_ENCODING, - (config->encoding) ? "deflate, gzip" : NULL); + (config->encoding) ? "" : NULL); res = curl_easy_perform(curl);