diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-01-09 09:18:21 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-01-09 09:18:21 -0330 |
commit | d02b0603f1bd1b66b47673474bc167c65f619f93 (patch) | |
tree | 2176351e8b5a9452a1c453add92ebd77ee3dae16 /cpp/src/IceSSL/Instance.cpp | |
parent | ICE-6196 added ProtocolInstance::secure() (diff) | |
download | ice-d02b0603f1bd1b66b47673474bc167c65f619f93.tar.bz2 ice-d02b0603f1bd1b66b47673474bc167c65f619f93.tar.xz ice-d02b0603f1bd1b66b47673474bc167c65f619f93.zip |
ICE-6196 Fixes for ProtocolInstance::secure()
Diffstat (limited to 'cpp/src/IceSSL/Instance.cpp')
-rw-r--r-- | cpp/src/IceSSL/Instance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceSSL/Instance.cpp b/cpp/src/IceSSL/Instance.cpp index c838566c942..d0380348f8d 100644 --- a/cpp/src/IceSSL/Instance.cpp +++ b/cpp/src/IceSSL/Instance.cpp @@ -22,7 +22,7 @@ using namespace IceSSL; IceUtil::Shared* IceSSL::upCast(IceSSL::Instance* p) { return p; } IceSSL::Instance::Instance(const SSLEnginePtr& engine, Short type, const string& protocol) : - ProtocolInstance(engine->communicator(), type, protocol), + ProtocolInstance(engine->communicator(), type, protocol, true), _engine(engine) { } |