X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fapache.c;h=8458ce15d1c9b58bdd8c9c24220e844242443f3a;hb=d6021a800b12c89b5a78877af2c5b9abc1a8e609;hp=202b73cfdc258f451b463a15ecfe9ca5b026865d;hpb=e33a2a5fffa6e57f8cea775ce2201606d49e155f;p=collectd.git diff --git a/src/apache.c b/src/apache.c index 202b73cf..8458ce15 100644 --- a/src/apache.c +++ b/src/apache.c @@ -426,6 +426,7 @@ static int init_host (apache_t *st) /* {{{ */ curl_easy_setopt (st->curl, CURLOPT_URL, st->url); curl_easy_setopt (st->curl, CURLOPT_FOLLOWLOCATION, 1L); + curl_easy_setopt (st->curl, CURLOPT_MAXREDIRS, 50L); if (st->verify_peer != 0) { @@ -611,7 +612,7 @@ static int apache_read_host (user_data_t *user_data) /* {{{ */ assert (st->curl != NULL); st->apache_buffer_fill = 0; - if (curl_easy_perform (st->curl) != 0) + if (curl_easy_perform (st->curl) != CURLE_OK) { ERROR ("apache: curl_easy_perform failed: %s", st->apache_curl_error);