summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/SChannelEngine.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2014-09-18 16:31:22 -0700
committerMark Spruiell <mes@zeroc.com>2014-09-18 16:31:22 -0700
commit47389ed86f956fa4eefbb26f7f950da0f909fa7b (patch)
tree49db6b6f6e8d2c7f2b66838d442bc12aa4c9b422 /cpp/src/IceSSL/SChannelEngine.cpp
parentICE-5677 consistent checking of boolean properties (diff)
downloadice-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.cpp8
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