diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-21 18:40:50 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-21 18:40:50 +0000 |
commit | 741b061d7c459b39a4406bda640139b7585b52f6 (patch) | |
tree | de5e08397cc6132c8a6dd96b66a09aaef6b757a4 /cpp/src/Ice/SystemOpenSSL.cpp | |
parent | Getting rid of old trash. (diff) | |
download | ice-741b061d7c459b39a4406bda640139b7585b52f6.tar.bz2 ice-741b061d7c459b39a4406bda640139b7585b52f6.tar.xz ice-741b061d7c459b39a4406bda640139b7585b52f6.zip |
Updated with a couple of minor bug fixes (ContextOpenSSL.cpp and
SystemOpenSSL.cpp) and the addition of the initial tests for IceSSL.
Diffstat (limited to 'cpp/src/Ice/SystemOpenSSL.cpp')
-rw-r--r-- | cpp/src/Ice/SystemOpenSSL.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cpp/src/Ice/SystemOpenSSL.cpp b/cpp/src/Ice/SystemOpenSSL.cpp index 9a242da85ce..aca6301513e 100644 --- a/cpp/src/Ice/SystemOpenSSL.cpp +++ b/cpp/src/Ice/SystemOpenSSL.cpp @@ -178,9 +178,6 @@ IceSSL::OpenSSL::System::configure(ContextType contextType) } } }
-
-
- void IceSSL::OpenSSL::System::loadConfig(ContextType contextType, @@ -399,7 +396,8 @@ IceSSL::OpenSSL::System::setCertificateVerifier(ContextType contextType, { IceUtil::RecMutex::Lock sync(_configMutex);
- CertificateVerifierPtr castVerifier = CertificateVerifierPtr::dynamicCast(verifier); + IceSSL::OpenSSL::CertificateVerifierPtr castVerifier;
+ castVerifier = IceSSL::OpenSSL::CertificateVerifierPtr::dynamicCast(verifier); if (!castVerifier.get()) { |