Fix missing IS_BOOL
authorJan-E <github@ehrhardt.nl>
Sun, 26 Apr 2015 18:26:58 +0000 (20:26 +0200)
committerJan-E <github@ehrhardt.nl>
Sun, 26 Apr 2015 18:26:58 +0000 (20:26 +0200)
Changed into _IS_BOOL like the others

php_http_client_curl.c

index df832ecd9a8515421a2019d7910e433285f56d3d..ac464abc7a72ede81d764d4b9c0bfb36f94c6721 100644 (file)
@@ -1438,7 +1438,7 @@ static void php_http_curle_options_init(php_http_options_t *registry)
                        opt->setter = php_http_curle_option_set_ssl_verifyhost;
                }
 #if PHP_HTTP_CURL_VERSION(7,41,0)
-               php_http_option_register(registry, ZEND_STRL("verifystatus"), CURLOPT_SSL_VERIFYSTATUS, IS_BOOL);
+               php_http_option_register(registry, ZEND_STRL("verifystatus"), CURLOPT_SSL_VERIFYSTATUS, _IS_BOOL);
 #endif
                php_http_option_register(registry, ZEND_STRL("cipher_list"), CURLOPT_SSL_CIPHER_LIST, IS_STRING);
                if ((opt = php_http_option_register(registry, ZEND_STRL("cainfo"), CURLOPT_CAINFO, IS_STRING))) {