D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
doc
/
python3-pycurl
/
tests
/
matrix
/
Filename :
curl-7.19.0-sslv2-c66b0b32fba-modified.patch
back
Copy
commit c66b0b32fba175d5f096c944d8ec8f9f06299f4a Author: Daniel Stenberg <daniel@haxx.se> Date: Sun Apr 10 19:14:22 2011 +0200 OpenSSL: no-sslv2 aware Allow openSSL without SSL2 to be used. This fix is inspired by the fix provided by Cristian Rodr�guez. Reported by: Cristian Rodr�guez diff --git a/lib/ssluse.c b/lib/ssluse.c index 654ffaa..caffdad 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -1327,8 +1327,13 @@ ossl_connect_step1(struct connectdata *conn, req_method = TLSv1_client_method(); break; case CURL_SSLVERSION_SSLv2: +#ifdef OPENSSL_NO_SSL2 + failf(data, "OpenSSL was built without SSLv2 support"); + return CURLE_UNSUPPORTED_PROTOCOL /* CURLE_NOT_BUILT_IN not defined in 7.19.0 */; +#else req_method = SSLv2_client_method(); break; +#endif case CURL_SSLVERSION_SSLv3: req_method = SSLv3_client_method(); break;
Name
Size
Last Modified
Owner
Permissions
Actions
curl-7.19.0-sslv2-2b0e09b0f98.patch
1.374
KB
December 03 2017 7:02:58
root
0644
curl-7.19.0-sslv2-c66b0b32fba-modified.patch
0.879
KB
December 03 2017 7:02:58
root
0644
openssl-1.0.1e-fix_pod_syntax-1.patch
11.468
KB
December 03 2017 7:03:03
root
0644
2017 © D7net | D704T team