summaryrefslogtreecommitdiffstats
path: root/migration
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2021-06-28 18:09:12 +0200
committerDaniel P. Berrangé2021-06-29 19:30:20 +0200
commit5590f65facc508fbc38575f19a0ab2fdcdcf18a4 (patch)
tree16f257496b59a21556d941c0fc128106fa20be45 /migration
parentchardev/socket: Use qcrypto_tls_creds_check_endpoint() (diff)
downloadqemu-5590f65facc508fbc38575f19a0ab2fdcdcf18a4.tar.gz
qemu-5590f65facc508fbc38575f19a0ab2fdcdcf18a4.tar.xz
qemu-5590f65facc508fbc38575f19a0ab2fdcdcf18a4.zip
migration/tls: Use qcrypto_tls_creds_check_endpoint()
Avoid accessing QCryptoTLSCreds internals by using the qcrypto_tls_creds_check_endpoint() helper. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'migration')
-rw-r--r--migration/tls.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/migration/tls.c b/migration/tls.c
index abb149d832..ca1ea3bbdd 100644
--- a/migration/tls.c
+++ b/migration/tls.c
@@ -49,11 +49,7 @@ migration_tls_get_creds(MigrationState *s,
s->parameters.tls_creds);
return NULL;
}
- if (ret->endpoint != endpoint) {
- error_setg(errp,
- "Expected TLS credentials for a %s endpoint",
- endpoint == QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT ?
- "client" : "server");
+ if (!qcrypto_tls_creds_check_endpoint(ret, endpoint, errp)) {
return NULL;
}