diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2002-12-21 18:03:46 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2002-12-21 18:03:46 +0000 |
commit | 98e85ae80b03add5f99b3f86f3d5bcca3262a813 (patch) | |
tree | 2b9e733d9e9f353ba60d09659a971015859db60f /ext/curl | |
parent | 16e5459f9445fcd95752e647bdaf923198352624 (diff) | |
download | php-git-98e85ae80b03add5f99b3f86f3d5bcca3262a813.tar.gz |
Fixed bug #20987 (no handling for client certificates).
Diffstat (limited to 'ext/curl')
-rw-r--r-- | ext/curl/interface.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/curl/interface.c b/ext/curl/interface.c index eeb5fb2f1d..00a44b81a9 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -805,6 +805,7 @@ PHP_FUNCTION(curl_setopt) case CURLOPT_COOKIEJAR: case CURLOPT_SSL_CIPHER_LIST: case CURLOPT_SSLKEY: + case CURLOPT_SSLCERT: case CURLOPT_SSLKEYTYPE: case CURLOPT_SSLKEYPASSWD: case CURLOPT_SSLENGINE: |