summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/OpenSSLEngine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLEngine.cpp')
-rw-r--r--cpp/src/IceSSL/OpenSSLEngine.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/cpp/src/IceSSL/OpenSSLEngine.cpp b/cpp/src/IceSSL/OpenSSLEngine.cpp
index a7232b06f7f..8c459506f0d 100644
--- a/cpp/src/IceSSL/OpenSSLEngine.cpp
+++ b/cpp/src/IceSSL/OpenSSLEngine.cpp
@@ -467,37 +467,6 @@ OpenSSLEngine::initialize()
}
}
- if(!file && !dir)
- {
- // Deprecated properties
- path = properties->getProperty(propPrefix + "CertAuthFile");
- if(!path.empty())
- {
- if(!checkPath(path, defaultDir, false, resolved))
- {
- throw PluginInitializationException(__FILE__, __LINE__,
- "IceSSL: CA certificate file not found:\n" + path);
- }
- path = resolved;
- file = path.c_str();
- }
- else
- {
- path = properties->getProperty(propPrefix + "CertAuthDir");
- if(!path.empty())
- {
- if(!checkPath(path, defaultDir, true, resolved))
- {
- throw PluginInitializationException(__FILE__, __LINE__,
- "IceSSL: CA certificate directory not found:\n" +
- path);
- }
- path = resolved;
- dir = path.c_str();
- }
- }
- }
-
if(file || dir)
{
//