diff options
author | Mark Spruiell <mes@zeroc.com> | 2014-09-18 16:31:22 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2014-09-18 16:31:22 -0700 |
commit | 47389ed86f956fa4eefbb26f7f950da0f909fa7b (patch) | |
tree | 49db6b6f6e8d2c7f2b66838d442bc12aa4c9b422 /cpp/src/IceSSL/SChannelEngine.cpp | |
parent | ICE-5677 consistent checking of boolean properties (diff) | |
download | ice-47389ed86f956fa4eefbb26f7f950da0f909fa7b.tar.bz2 ice-47389ed86f956fa4eefbb26f7f950da0f909fa7b.tar.xz ice-47389ed86f956fa4eefbb26f7f950da0f909fa7b.zip |
minor edits to IceSSL/C++
Diffstat (limited to 'cpp/src/IceSSL/SChannelEngine.cpp')
-rw-r--r-- | cpp/src/IceSSL/SChannelEngine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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 |