SSL.cpp: replace deprecated QSslSocket::systemCaCertificates() with QSslConfiguration::systemCaCertificates()

92cda94742
This commit is contained in:
Davide Beatrici 2019-07-27 23:28:38 +02:00
parent edae495768
commit 3cd2984e8a

View File

@ -214,7 +214,7 @@ void MumbleSSL::addSystemCA() {
#if QT_VERSION >= 0x040800
// Don't perform on-demand loading of root certificates
QSslSocket::addDefaultCaCertificates(QSslSocket::systemCaCertificates());
QSslSocket::addDefaultCaCertificates(QSslConfiguration::systemCaCertificates());
#endif
#ifdef Q_OS_WIN