diff options
author | Tobias Markmann <tm@ayena.de> | 2016-03-01 07:08:54 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2016-03-04 16:43:51 (GMT) |
commit | b3284f9ce20516a1b6c8703044563cdcd8272201 (patch) | |
tree | 5890e0322c91a7c67a660516b03e5cff0a83b8ae /Swiften/QA/TLSTest/CertificateErrorTest.cpp | |
parent | 04a84b0eee359aafaafcbfe3e692c3be0b17d235 (diff) | |
download | swift-b3284f9ce20516a1b6c8703044563cdcd8272201.zip swift-b3284f9ce20516a1b6c8703044563cdcd8272201.tar.bz2 |
Fix small issues around Swiften/QA/TLSTest
The jabber_org.crt was falsely modified in commit 0297fa1;
reverted the file to its previous version.
Fixed a syntax error in CertificateErrorTest.
Fixed compilation of TLS stack with external OpenSSL.
Test-Information:
Tested compilation ./scons test=system Swiften/QA/TLSTest
with OpenSSL on OS X 10.11.3.
Change-Id: I58caf94dded128d3ee725b1961e54ad2955d70aa
Diffstat (limited to 'Swiften/QA/TLSTest/CertificateErrorTest.cpp')
-rw-r--r-- | Swiften/QA/TLSTest/CertificateErrorTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/QA/TLSTest/CertificateErrorTest.cpp b/Swiften/QA/TLSTest/CertificateErrorTest.cpp index 1d87994..ec8c4e3 100644 --- a/Swiften/QA/TLSTest/CertificateErrorTest.cpp +++ b/Swiften/QA/TLSTest/CertificateErrorTest.cpp @@ -53,7 +53,7 @@ class CertificateErrorTest : public CppUnit::TestFixture { boostIOService_ = boost::make_shared<boost::asio::io_service>(); connectionFactory_ = new BoostConnectionFactory(boostIOServiceThread_->getIOService(), eventLoop_); idnConverter_ = PlatformIDNConverter::create(); - domainNameResolver_ = new PlatformDomainNameResolver(idnConverter_, eventLoop_), + domainNameResolver_ = new PlatformDomainNameResolver(idnConverter_, eventLoop_); tlsFactories_ = new PlatformTLSFactories(); tlsContextFactory_ = tlsFactories_->getTLSContextFactory(); |