0002-Allow-the-core-to-use-expired-certificates.patch
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 |
- |