diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2016-08-23 11:46:23 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-10-16 13:18:07 +0200 |
commit | a1a5cd04877fd6fd54dce257138ee860a0aab5bc (patch) | |
tree | 814f23d7b4871918f164363026fb68e833b3ba9e /src/tool_operate.c | |
parent | 96e3c0774466c1b87dc94131c65a6cbe370f5b01 (diff) |
curl: do not set CURLOPT_SSLENGINEDEFAULT automatically
There were bugs in the PKCS#11 engine, and fixing them triggers bugs in
OpenSSL. Just don't get involved; there's no need to be making the
engine methods the default anyway.
https://github.com/OpenSC/libp11/pull/108
https://github.com/openssl/openssl/pull/1639
Merges #1042
Diffstat (limited to 'src/tool_operate.c')
-rw-r--r-- | src/tool_operate.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 97bb87b3d..54a57a03c 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -1177,7 +1177,6 @@ static CURLcode operate_do(struct GlobalConfig *global, result = res_setopt_str(curl, CURLOPT_SSLENGINE, config->engine); if(result) goto show_error; - my_setopt(curl, CURLOPT_SSLENGINE_DEFAULT, 1L); } /* new in curl 7.10.7, extended in 7.19.4. Modified to use |