X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsslserver.cpp;h=1daa77064333b851ee27c9102a611e7341d0dd8b;hp=3d76b41f13fdec521117435fcb37539506fe8d56;hb=2f5ea29cc7ea1951dbfa59a8ea81a58a0d577650;hpb=fefbb186cc197295ce493322832cadf22ee1cefe diff --git a/src/core/sslserver.cpp b/src/core/sslserver.cpp index 3d76b41f..1daa7706 100644 --- a/src/core/sslserver.cpp +++ b/src/core/sslserver.cpp @@ -57,7 +57,7 @@ SslServer::SslServer(QObject *parent) quWarning() << "SslServer: Unable to set certificate file\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."; + << " Please see https://quassel-irc.org/faq/cert to learn how to enable SSL support."; sslWarningShown = true; } } @@ -112,12 +112,12 @@ bool SslServer::reloadCerts() quWarning() << "SslServer: Unable to reload certificate file, reverting\n" << " Quassel Core will use the previous key to provide SSL for client connections.\n" - << " Please see http://quassel-irc.org/faq/cert to learn how to enable SSL support."; + << " Please see https://quassel-irc.org/faq/cert to learn how to enable SSL support."; } else { quWarning() << "SslServer: Unable to reload certificate file\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."; + << " Please see https://quassel-irc.org/faq/cert to learn how to enable SSL support."; } return false; }