X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fnginx.c;h=697684277a153911fdc43474cdc74bdab5b62d1e;hb=0d5c879672770e3b8a740727fb223a6febdeaa27;hp=53137a71d206dd5ec9218d9697a963a6085c8db3;hpb=53f791cb6b55512101a0a0f42f9d91c356fa9591;p=collectd.git diff --git a/src/nginx.c b/src/nginx.c index 53137a71..69768427 100644 --- a/src/nginx.c +++ b/src/nginx.c @@ -143,7 +143,7 @@ static int init (void) 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); } @@ -152,7 +152,7 @@ static int init (void) 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); }