aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-05-12 12:45:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-05-12 12:45:57 +0000
commite99eff4eb0e478824534adf8e86959a43a37f43d (patch)
treef93f9d25ef93e740ae3d78a55bd05f5b40c7e39c /src
parentc0197f19cfcec0dd1ade0648d123b9399a6a1959 (diff)
setting ENCODING to "" means enable-all-you-support
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
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);