X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsslserver.cpp;h=c94859ed8319e350f5f8e48da4bc1f452be4589a;hp=5a61a31b740e38f305d600d31b8dd8174f88da33;hb=fc81975a545211f3ccd3d25e266477adad2c9445;hpb=0b25f3d02a72ebe2953441f36fd6595bb9fb4e22 diff --git a/src/core/sslserver.cpp b/src/core/sslserver.cpp index 5a61a31b..c94859ed 100644 --- a/src/core/sslserver.cpp +++ b/src/core/sslserver.cpp @@ -20,16 +20,17 @@ #include "sslserver.h" -#ifndef QT_NO_OPENSSL +#ifdef HAVE_SSL # include #endif #include #include +#include "logger.h" #include "util.h" -#ifndef QT_NO_OPENSSL +#ifdef HAVE_SSL SslServer::SslServer(QObject *parent) : QTcpServer(parent) @@ -45,7 +46,7 @@ SslServer::SslServer(QObject *parent) _certIsValid = !_cert.isNull() && _cert.isValid() && !_key.isNull(); if(!_certIsValid) { - qWarning() << "SslServer: SSL Certificate is either missing or has a wrong format!\n" + quWarning() << "SslServer: SSL Certificate is either missing or has a wrong format!\n" << " Quassel Core will still work, but cannot provide SSL for client connections.\n" << " Please see http://quassel-irc.org/faq/cert to learn how to enable SSL support."; } @@ -72,4 +73,4 @@ void SslServer::incomingConnection(int socketDescriptor) { } } -#endif // QT_NO_OPENSSL +#endif // HAVE_SSL