X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fascent.c;h=6782fce199db3f5c9ffbbe984d81080e7e1a7cb3;hb=0d5c879672770e3b8a740727fb223a6febdeaa27;hp=8829e518f3fbfef289b9d74d368fe7ffc1de7bbf;hpb=f50ada19dcd0dc6185dc4b410e721d46d1caba9f;p=collectd.git diff --git a/src/ascent.c b/src/ascent.c index 8829e518..6782fce1 100644 --- a/src/ascent.c +++ b/src/ascent.c @@ -560,13 +560,14 @@ static int ascent_init (void) /* {{{ */ } curl_easy_setopt (curl, CURLOPT_URL, url); + curl_easy_setopt (curl, CURLOPT_FOLLOWLOCATION, 1); - if ((verify_peer == NULL) || (strcmp (verify_peer, "true") == 0)) + if ((verify_peer == NULL) || IS_TRUE (verify_peer)) curl_easy_setopt (curl, CURLOPT_SSL_VERIFYPEER, 1); else curl_easy_setopt (curl, CURLOPT_SSL_VERIFYPEER, 0); - if ((verify_host == NULL) || (strcmp (verify_host, "true") == 0)) + if ((verify_host == NULL) || IS_TRUE (verify_host)) curl_easy_setopt (curl, CURLOPT_SSL_VERIFYHOST, 2); else curl_easy_setopt (curl, CURLOPT_SSL_VERIFYHOST, 0);