summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp')
-rw-r--r--Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp
index 12445fd..e332ca8 100644
--- a/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp
+++ b/Swiften/TLS/OpenSSL/OpenSSLContextFactory.cpp
@@ -47,14 +47,14 @@ ByteArray OpenSSLContextFactory::convertDHParametersFromPEMToDER(const std::stri
47 47
48void OpenSSLContextFactory::setCheckCertificateRevocation(bool check) { 48void OpenSSLContextFactory::setCheckCertificateRevocation(bool check) {
49 if (check) { 49 if (check) {
50 SWIFT_LOG(warning) << "CRL Checking not supported for OpenSSL" << std::endl; 50 SWIFT_LOG(warning) << "CRL Checking not supported for OpenSSL";
51 assert(false); 51 assert(false);
52 } 52 }
53} 53}
54 54
55void OpenSSLContextFactory::setDisconnectOnCardRemoval(bool check) { 55void OpenSSLContextFactory::setDisconnectOnCardRemoval(bool check) {
56 if (check) { 56 if (check) {
57 SWIFT_LOG(warning) << "Smart cards not supported for OpenSSL" << std::endl; 57 SWIFT_LOG(warning) << "Smart cards not supported for OpenSSL";
58 } 58 }
59} 59}
60 60