diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-01-29 23:19:33 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-01-29 23:19:33 +0000 |
commit | f33050f80e1e03187ad2972b1d7bf746f4f04527 (patch) | |
tree | f66b736fc5a5c08665a3420f2e4701fc8d83f353 /cpp/src/IceSSL/GeneralConfig.cpp | |
parent | dsacert is not a valid child of tempcerts; removing SSLv2 (diff) | |
download | ice-f33050f80e1e03187ad2972b1d7bf746f4f04527.tar.bz2 ice-f33050f80e1e03187ad2972b1d7bf746f4f04527.tar.xz ice-f33050f80e1e03187ad2972b1d7bf746f4f04527.zip |
disable SSLv2
Diffstat (limited to 'cpp/src/IceSSL/GeneralConfig.cpp')
-rw-r--r-- | cpp/src/IceSSL/GeneralConfig.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/src/IceSSL/GeneralConfig.cpp b/cpp/src/IceSSL/GeneralConfig.cpp index 62d688154b8..6e7f88e3cdc 100644 --- a/cpp/src/IceSSL/GeneralConfig.cpp +++ b/cpp/src/IceSSL/GeneralConfig.cpp @@ -106,11 +106,7 @@ IceSSL::GeneralConfig::set(string& name, string& value) void IceSSL::GeneralConfig::parseVersion(string& value) { - if(value.compare("SSLv2") == 0) - { - _sslVersion = SSL_V2; - } - else if(value.compare("SSLv23") == 0) + if(value.compare("SSLv23") == 0) { _sslVersion = SSL_V23; } |