X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fcurl_json.c;h=4d8677acee2866f1026ac9b711ef92188e01f250;hp=8e09bd82262bad42d994a4f7d0ce6aaec02d6986;hb=76fb10bf790e35dd6caca13c4bb5d0f86c517370;hpb=211bd48433190a4623d38ec70bcd5266e880066c diff --git a/src/curl_json.c b/src/curl_json.c index 8e09bd82..4d8677ac 100644 --- a/src/curl_json.c +++ b/src/curl_json.c @@ -600,7 +600,7 @@ static int cj_init_curl(cj_t *db) /* {{{ */ curl_easy_setopt(db->curl, CURLOPT_TIMEOUT_MS, (long)db->timeout); else if (db->interval > 0) curl_easy_setopt(db->curl, CURLOPT_TIMEOUT_MS, - (long)CDTIME_T_TO_MS(db->timeout)); + (long)CDTIME_T_TO_MS(db->interval)); else curl_easy_setopt(db->curl, CURLOPT_TIMEOUT_MS, (long)CDTIME_T_TO_MS(plugin_get_interval()));