diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-05-12 12:45:57 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-05-12 12:45:57 +0000 |
commit | e99eff4eb0e478824534adf8e86959a43a37f43d (patch) | |
tree | f93f9d25ef93e740ae3d78a55bd05f5b40c7e39c | |
parent | c0197f19cfcec0dd1ade0648d123b9399a6a1959 (diff) |
setting ENCODING to "" means enable-all-you-support
-rw-r--r-- | src/main.c | 2 |
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); |