X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fnginx.c;h=69ec06dc996edc9452ea565776c9d9d70c241e68;hb=8dfaf98cde62e42d4c245400c68ae9c825a2fe68;hp=1c537a85e46e7ac80e1502f3647a9f29fa6bdd64;hpb=76d9c9033e021cbdb0da0fc2b0ad23bc3d7ad487;p=collectd.git diff --git a/src/nginx.c b/src/nginx.c index 1c537a85..69ec06dc 100644 --- a/src/nginx.c +++ b/src/nginx.c @@ -181,15 +181,16 @@ static int init (void) curl_easy_setopt (curl, CURLOPT_CAINFO, cacert); } +#ifdef HAVE_CURLOPT_TIMEOUT_MS if (timeout != NULL) { curl_easy_setopt (curl, CURLOPT_TIMEOUT_MS, atol(timeout)); } else { - curl_easy_setopt (curl, CURLOPT_TIMEOUT_MS, - CDTIME_T_TO_MS(plugin_get_interval())); + curl_easy_setopt (curl, CURLOPT_TIMEOUT_MS, (long) CDTIME_T_TO_MS(plugin_get_interval())); } +#endif return (0); } /* void init */