From 47389ed86f956fa4eefbb26f7f950da0f909fa7b Mon Sep 17 00:00:00 2001 From: Mark Spruiell Date: Thu, 18 Sep 2014 16:31:22 -0700 Subject: minor edits to IceSSL/C++ --- cpp/src/IceSSL/SChannelEngine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpp/src/IceSSL/SChannelEngine.cpp') diff --git a/cpp/src/IceSSL/SChannelEngine.cpp b/cpp/src/IceSSL/SChannelEngine.cpp index e0aa2bc216e..71b6f5882cd 100644 --- a/cpp/src/IceSSL/SChannelEngine.cpp +++ b/cpp/src/IceSSL/SChannelEngine.cpp @@ -124,8 +124,8 @@ parseProtocols(const StringSeq& protocols) return v; } -const ALG_ID supportedChipers[] = { CALG_3DES, CALG_AES_128, CALG_AES_256, CALG_DES, CALG_RC2, CALG_RC4 }; -const int supportedChipersSize = sizeof(supportedChipers)/sizeof(ALG_ID); +const ALG_ID supportedCiphers[] = { CALG_3DES, CALG_AES_128, CALG_AES_256, CALG_DES, CALG_RC2, CALG_RC4 }; +const int supportedCiphersSize = sizeof(supportedCiphers)/sizeof(ALG_ID); ALG_ID algorithmId(const string& name) @@ -208,9 +208,9 @@ SChannelEngine::initialize() os << "enabling SSL ciphersuites:"; if(_ciphers.empty()) { - for(int i = 0; i < supportedChipersSize; ++i) + for(int i = 0; i < supportedCiphersSize; ++i) { - os << "\n " << getCipherName(supportedChipers[i]); + os << "\n " << getCipherName(supportedCiphers[i]); } } else -- cgit v1.2.3