aboutsummaryrefslogtreecommitdiffstats
path: root/src/ssl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-09-08 00:02:38 +0000
committerlloyd <[email protected]>2010-09-08 00:02:38 +0000
commit02ed6ebc954683cd2a25a81b6e707ab481e41e26 (patch)
tree41fc6932ef9684057a4a5c383277a71bdaa4bb5e /src/ssl
parent197f7cd4f744ae8246832343dc514296632554b2 (diff)
Fix RC4 suites
Diffstat (limited to 'src/ssl')
-rw-r--r--src/ssl/tls_suites.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ssl/tls_suites.cpp b/src/ssl/tls_suites.cpp
index a6e630717..59c7c2363 100644
--- a/src/ssl/tls_suites.cpp
+++ b/src/ssl/tls_suites.cpp
@@ -215,7 +215,7 @@ namespace {
std::pair<std::string, u32bit> cipher_code_to_name(TLS_Ciphersuite_Algos algo)
{
if((algo & TLS_ALGO_CIPHER_MASK) == TLS_ALGO_CIPHER_RC4_128)
- return std::make_pair("RC4", 128);
+ return std::make_pair("ARC4", 128);
if((algo & TLS_ALGO_CIPHER_MASK) == TLS_ALGO_CIPHER_3DES_CBC)
return std::make_pair("3DES", 24);