]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
nss: fix typo in ecdhe_rsa_null cipher suite string
authorKamil Dudka <kdudka@redhat.com>
Mon, 19 Sep 2016 14:37:05 +0000 (16:37 +0200)
committerKamil Dudka <kdudka@redhat.com>
Thu, 22 Sep 2016 08:17:26 +0000 (10:17 +0200)
As it seems to be a rarely used cipher suite (for securely established
but _unencrypted_ connections), I believe it is fine not to provide an
alias for the misspelled variant.

lib/vtls/nss.c

index 8a4249cbad59d33d3b87a1ab4a8b50ebd1c20e7c..72e41e0c2247d1c74df8218ef24ab55dd90d0a39 100644 (file)
@@ -149,7 +149,7 @@ static const cipher_s cipherlist[] = {
   {"ecdh_rsa_3des_sha",          TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA},
   {"ecdh_rsa_aes_128_sha",       TLS_ECDH_RSA_WITH_AES_128_CBC_SHA},
   {"ecdh_rsa_aes_256_sha",       TLS_ECDH_RSA_WITH_AES_256_CBC_SHA},
-  {"echde_rsa_null",             TLS_ECDHE_RSA_WITH_NULL_SHA},
+  {"ecdhe_rsa_null",             TLS_ECDHE_RSA_WITH_NULL_SHA},
   {"ecdhe_rsa_rc4_128_sha",      TLS_ECDHE_RSA_WITH_RC4_128_SHA},
   {"ecdhe_rsa_3des_sha",         TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA},
   {"ecdhe_rsa_aes_128_sha",      TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA},