set transfer encoding to gzip as recommended by LP documentation.
[ppastats.git] / src / http.c
index f2351c9..4b7b27f 100644 (file)
@@ -91,6 +91,7 @@ static char *fetch_url(const char *url)
        curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, cbk_curl);
        curl_easy_setopt(curl, CURLOPT_WRITEDATA, content);
        curl_easy_setopt(curl, CURLOPT_USERAGENT, "ppastats/0.0");
+       curl_easy_setopt(curl, CURLOPT_TRANSFER_ENCODING, 1);
 
        if (curl_easy_perform(curl) == CURLE_OK) {
                curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code);