diff options
| author | Pierrick Charron <pierrick@php.net> | 2016-04-23 22:55:00 -0400 |
|---|---|---|
| committer | Pierrick Charron <pierrick@php.net> | 2016-04-23 22:55:00 -0400 |
| commit | a2d78d1a5f1cf5904e59ab75c5b31f41a6cc0c6e (patch) | |
| tree | 0c5f43ad3577b896a7e59b194322e217d5bb47f4 | |
| parent | 043ce195c6713352d1d492da559af36b5b2d390b (diff) | |
| download | php-git-a2d78d1a5f1cf5904e59ab75c5b31f41a6cc0c6e.tar.gz | |
Fixed bug #68658 (Define CURLE_SSL_CACERT_BADFILE)
| -rw-r--r-- | NEWS | 3 | ||||
| -rw-r--r-- | ext/curl/interface.c | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -11,6 +11,9 @@ PHP NEWS (Nikita) . Fixed bug #72059 (?? is not allowed on constant expressions). (Bob, Marcio) +- Curl: + . Fixed bug #68658 (Define CURLE_SSL_CACERT_BADFILE). (Pierrick) + - JSON: . Fixed bug #72069 (Behavior \JsonSerializable different from json_encode). (Laruence) diff --git a/ext/curl/interface.c b/ext/curl/interface.c index 51d4485773..f29a11a3fd 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -1002,6 +1002,7 @@ PHP_MINIT_FUNCTION(curl) #endif #if LIBCURL_VERSION_NUM >= 0x071000 /* Available since 7.16.0 */ + REGISTER_CURL_CONSTANT(CURLE_SSL_CACERT_BADFILE); REGISTER_CURL_CONSTANT(CURLOPT_SSL_SESSIONID_CACHE); REGISTER_CURL_CONSTANT(CURLMOPT_PIPELINING); #endif |
