diff --git a/docs/examples/crawler.c b/docs/examples/crawler.c index d8fa5a459b..496d88c949 100644 --- a/docs/examples/crawler.c +++ b/docs/examples/crawler.c @@ -81,7 +81,7 @@ CURL *make_handle(char *url) curl_easy_setopt(handle, CURLOPT_PRIVATE, mem); /* For completeness */ - curl_easy_setopt(handle, CURLOPT_ENCODING, "gzip, deflate"); + curl_easy_setopt(handle, CURLOPT_ACCEPT_ENCODING, ""); curl_easy_setopt(handle, CURLOPT_TIMEOUT, 5L); curl_easy_setopt(handle, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(handle, CURLOPT_MAXREDIRS, 10L);