summaryrefslogtreecommitdiffstats
path: root/src/plugins/tls/shared/qx509_generic.cpp
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2021-07-20 16:55:24 +0200
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2021-07-21 12:20:06 +0200
commit4c5b604fabc0a7992ae5b1ab7beaa294f0e33388 (patch)
treea1a26179c1b27c1bc95f9761d7f2c8102e3caad6 /src/plugins/tls/shared/qx509_generic.cpp
parent18458dbebdd8bddd3242dc72a2bf7b74d6700b3c (diff)
Fix lcTlsBackend redefined in several places (plugins, static build)
With -static build lcTlsBackend was duplicated. Change-Id: I20ee0f9c7e2027a7033c9fbae628d0d91672e719 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> (cherry picked from commit 5e688a72046972b871347ff4d8dd141cdf9f2cef)
Diffstat (limited to 'src/plugins/tls/shared/qx509_generic.cpp')
-rw-r--r--src/plugins/tls/shared/qx509_generic.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/tls/shared/qx509_generic.cpp b/src/plugins/tls/shared/qx509_generic.cpp
index 9265498c4e..f5fd1b6b30 100644
--- a/src/plugins/tls/shared/qx509_generic.cpp
+++ b/src/plugins/tls/shared/qx509_generic.cpp
@@ -79,8 +79,6 @@ bool X509CertificateGeneric::isSelfSigned() const
if (null)
return false;
- qCWarning(lcTlsBackend, "QSslCertificate::isSelfSigned: This function does not check, whether the certificate "
- "is actually signed. It just checks whether issuer and subject are identical");
return subjectMatchesIssuer;
}