Project

General

Profile

0002-Allow-the-core-to-use-expired-certificates.patch

debfx, 09/27/2011 04:09 PM

View differences:

src/core/sslserver.cpp
114 114
    return false;
115 115
  }
116 116
  if(!_cert.isValid()) {
117
    quWarning() << "SslServer: Invalid certificate";
118
    return false;
117
    quWarning() << "SslServer: Invalid certificate (most likely expired)";
119 118
  }
120 119
  if(_key.isNull()) {
121 120
    quWarning() << "SslServer:" << qPrintable(path) << "contains no key data";
122
-