summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/ClientContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/ClientContext.cpp')
-rw-r--r--cpp/src/IceSSL/ClientContext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceSSL/ClientContext.cpp b/cpp/src/IceSSL/ClientContext.cpp
index eaac6778704..b85cd88c01c 100644
--- a/cpp/src/IceSSL/ClientContext.cpp
+++ b/cpp/src/IceSSL/ClientContext.cpp
@@ -12,7 +12,7 @@
#include <IceSSL/Exception.h>
#include <IceSSL/ClientContext.h>
-#include <IceSSL/SslClientTransceiver.h>
+#include <IceSSL/SslTransceiver.h>
#include <IceSSL/TraceLevels.h>
using namespace std;
@@ -60,7 +60,7 @@ IceSSL::ClientContext::createTransceiver(int socket, const OpenSSLPluginIPtr& pl
}
SSL* ssl = createSSLConnection(socket);
- return new SslClientTransceiver(plugin, socket, _certificateVerifier, ssl, timeout);
+ return new SslTransceiver(IceSSL::Client, plugin, socket, _certificateVerifier, ssl, timeout);
}
IceSSL::ClientContext::ClientContext(const TraceLevelsPtr& traceLevels, const CommunicatorPtr& communicator) :