From: Daniel Stenberg Date: Thu, 12 Mar 2015 22:29:46 +0000 (+0100) Subject: openssl: use colons properly in the ciphers list X-Git-Tag: curl-7_42_0~163 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=186e46d88dd;p=thirdparty%2Fcurl.git openssl: use colons properly in the ciphers list While the previous string worked, this is the documented format. Reported-by: Richard Moore --- diff --git a/lib/vtls/openssl.h b/lib/vtls/openssl.h index 4ba34b0eb5..499b4fe298 100644 --- a/lib/vtls/openssl.h +++ b/lib/vtls/openssl.h @@ -107,7 +107,7 @@ bool Curl_ossl_cert_status_request(void); #define curlssl_cert_status_request() Curl_ossl_cert_status_request() #define DEFAULT_CIPHER_SELECTION \ - "ALL!EXPORT!EXPORT40!EXPORT56!aNULL!LOW!RC4@STRENGTH" + "ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH" #endif /* USE_OPENSSL */ #endif /* HEADER_CURL_SSLUSE_H */