From 9359fc4c1b18ec11904d50c2abe1438f0f25aa68 Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Mon, 3 Jun 2024 16:59:42 +1200 Subject: [PATCH] QGeoMapReplyQGC: disable noisy warning --- src/QtLocationPlugin/QGeoMapReplyQGC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QtLocationPlugin/QGeoMapReplyQGC.cpp b/src/QtLocationPlugin/QGeoMapReplyQGC.cpp index 84bf414..f1426a4 100644 --- a/src/QtLocationPlugin/QGeoMapReplyQGC.cpp +++ b/src/QtLocationPlugin/QGeoMapReplyQGC.cpp @@ -262,7 +262,7 @@ void QGeoTiledMapReplyQGC::setIgnoreSSLErrorsIfNeeded(QNetworkReply& networkRepl const bool sslLibraryBuildIs1x = (QSslSocket::sslLibraryBuildVersionNumber() & 0xf0000000) == 0x10000000; const bool sslLibraryIs3x = (QSslSocket::sslLibraryVersionNumber() & 0xf0000000) == 0x30000000; if (sslLibraryBuildIs1x && sslLibraryIs3x) { - qWarning() << "Ignoring ssl certificates due to OpenSSL version mismatch"; + //qWarning() << "Ignoring ssl certificates due to OpenSSL version mismatch"; QList errorsThatCanBeIgnored; errorsThatCanBeIgnored << QSslError(QSslError::NoPeerCertificate); networkReply.ignoreSslErrors(errorsThatCanBeIgnored);