X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fsslserver.cpp;h=a9fe750e7f1c2bea929b7ecdc79bd9a527ec7293;hb=24acf1efa9e91c58d9e64d76e03e7683ac0ac889;hp=c31b507f73638c01ce17fe28916bb34fa86c22d0;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/core/sslserver.cpp b/src/core/sslserver.cpp index c31b507f..a9fe750e 100644 --- a/src/core/sslserver.cpp +++ b/src/core/sslserver.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2013 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "sslserver.h" @@ -122,6 +122,7 @@ bool SslServer::setCertificate(const QString &path) } if (!_cert.isValid()) { quWarning() << "SslServer: Invalid certificate (most likely expired)"; + // We allow the core to offer SSL anyway, so no "return false" here. Client will warn about the cert being invalid. } if (_key.isNull()) { quWarning() << "SslServer:" << qPrintable(path) << "contains no key data";