removed used local var initialization
[ppastats.git] / src / http.c
index f2351c9..4baceef 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);
@@ -150,9 +151,8 @@ char *get_url_content(const char *url, unsigned int use_cache)
        if (use_cache)
                content = fcache_get(url + 7);
 
-       if (!content) {
+       if (!content)
                content = fetch_url(url);
-       }
 
        if (use_cache && content)
                fcache_put(url + 7, content);