mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 16:18:48 -05:00
Bug report #1842029 (http://curl.haxx.se/bug/view.cgi?id=1842029) identified
a problem with SSL session caching that prevent it from working, and the associated fix!
This commit is contained in:
parent
9d0ffb9cc6
commit
5c447f2499
4
CHANGES
4
CHANGES
@ -8,6 +8,10 @@
|
|||||||
|
|
||||||
|
|
||||||
Daniel S (3 Dec 2007)
|
Daniel S (3 Dec 2007)
|
||||||
|
- Bug report #1842029 (http://curl.haxx.se/bug/view.cgi?id=1842029) identified
|
||||||
|
a problem with SSL session caching that prevent it from working, and the
|
||||||
|
associated fix!
|
||||||
|
|
||||||
- Now libcurl (built with OpenSSL) doesn't return error anymore if the remote
|
- Now libcurl (built with OpenSSL) doesn't return error anymore if the remote
|
||||||
SSL-based server doesn't present a certificate when the request is told to
|
SSL-based server doesn't present a certificate when the request is told to
|
||||||
ignore certificate verification anyway.
|
ignore certificate verification anyway.
|
||||||
|
@ -96,6 +96,7 @@ bool
|
|||||||
Curl_clone_ssl_config(struct ssl_config_data *source,
|
Curl_clone_ssl_config(struct ssl_config_data *source,
|
||||||
struct ssl_config_data *dest)
|
struct ssl_config_data *dest)
|
||||||
{
|
{
|
||||||
|
dest->sessionid = source->sessionid;
|
||||||
dest->verifyhost = source->verifyhost;
|
dest->verifyhost = source->verifyhost;
|
||||||
dest->verifypeer = source->verifypeer;
|
dest->verifypeer = source->verifypeer;
|
||||||
dest->version = source->version;
|
dest->version = source->version;
|
||||||
|
Loading…
Reference in New Issue
Block a user