summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorDaniel P. Berrangé2021-05-14 14:04:10 +0200
committerThomas Huth2021-06-02 07:10:45 +0200
commitfd4eddc3a8237987c73fe1981ce9e3a4bd9fee29 (patch)
tree442d90c963a9204ec314481c2c3a233c3ee2b596 /crypto
parentcrypto: bump min gnutls to 3.5.18, dropping RHEL-7 support (diff)
downloadqemu-fd4eddc3a8237987c73fe1981ce9e3a4bd9fee29.tar.gz
qemu-fd4eddc3a8237987c73fe1981ce9e3a4bd9fee29.tar.xz
qemu-fd4eddc3a8237987c73fe1981ce9e3a4bd9fee29.zip
crypto: drop used conditional check
The condition being tested has never been set since the day the code was first introduced. Reviewed-by: Willian Rampazzo <willianr@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20210514120415.1368922-8-berrange@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/tlscredsx509.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/tlscredsx509.c b/crypto/tlscredsx509.c
index bc503bab55..d9d6f4421e 100644
--- a/crypto/tlscredsx509.c
+++ b/crypto/tlscredsx509.c
@@ -354,11 +354,9 @@ qcrypto_tls_creds_check_cert_pair(gnutls_x509_crt_t cert,
reason = "The certificate has been revoked";
}
-#ifndef GNUTLS_1_0_COMPAT
if (status & GNUTLS_CERT_INSECURE_ALGORITHM) {
reason = "The certificate uses an insecure algorithm";
}
-#endif
error_setg(errp,
"Our own certificate %s failed validation against %s: %s",