From: Philippe Mathieu-Daudé Date: Mon, 28 Jun 2021 16:09:13 +0000 (+0200) Subject: ui/vnc: Use qcrypto_tls_creds_check_endpoint() X-Git-Tag: qemu-xen-4.16.0-rc4~97^2~1 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3c52bf0c608419d7892fea95f2a0af8f2e99633e;p=qemu-xen.git ui/vnc: Use qcrypto_tls_creds_check_endpoint() Avoid accessing QCryptoTLSCreds internals by using the qcrypto_tls_creds_check_endpoint() helper. Signed-off-by: Philippe Mathieu-Daudé Signed-off-by: Daniel P. Berrangé --- diff --git a/ui/vnc.c b/ui/vnc.c index f0a1550d58..0e5fcb278f 100644 --- a/ui/vnc.c +++ b/ui/vnc.c @@ -46,6 +46,7 @@ #include "qapi/qapi-commands-ui.h" #include "ui/input.h" #include "crypto/hash.h" +#include "crypto/tlscreds.h" #include "crypto/tlscredsanon.h" #include "crypto/tlscredsx509.h" #include "crypto/random.h" @@ -4080,9 +4081,9 @@ void vnc_display_open(const char *id, Error **errp) } object_ref(OBJECT(vd->tlscreds)); - if (vd->tlscreds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) { - error_setg(errp, - "Expecting TLS credentials with a server endpoint"); + if (!qcrypto_tls_creds_check_endpoint(vd->tlscreds, + QCRYPTO_TLS_CREDS_ENDPOINT_SERVER, + errp)) { goto fail; } }