diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-03-12 23:29:46 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-03-12 23:29:46 +0100 |
commit | 186e46d88ddce2bbea9664b3c96ef188bb7c6f75 (patch) | |
tree | d6611a9872f7b3354fa6c11b006b53e085bf4812 | |
parent | 0d1060f21efe81454f59f75d12f2798ba0566130 (diff) |
openssl: use colons properly in the ciphers list
While the previous string worked, this is the documented format.
Reported-by: Richard Moore
-rw-r--r-- | lib/vtls/openssl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/openssl.h b/lib/vtls/openssl.h index 4ba34b0eb..499b4fe29 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 */ |