diff options
author | Juan Quintela <quintela@redhat.com> | 2023-04-26 21:33:08 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2023-05-03 11:24:20 +0200 |
commit | 0deb7e9b6cfdb39d89a629e705d6176c511fa83e (patch) | |
tree | 1c3710dc307c17565159f8615abca6da5d42e11d /migration/tls.h | |
parent | 3f461a0c0bbc759485bb3253308970a03952f072 (diff) |
migration: Drop unused parameter for migration_tls_client_create()
It is not needed since we moved the accessor for tls properties to
options.c.
Suggested-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Diffstat (limited to 'migration/tls.h')
-rw-r--r-- | migration/tls.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/migration/tls.h b/migration/tls.h index 98e23c9b0e..5797d153cb 100644 --- a/migration/tls.h +++ b/migration/tls.h @@ -28,8 +28,7 @@ void migration_tls_channel_process_incoming(MigrationState *s, QIOChannel *ioc, Error **errp); -QIOChannelTLS *migration_tls_client_create(MigrationState *s, - QIOChannel *ioc, +QIOChannelTLS *migration_tls_client_create(QIOChannel *ioc, const char *hostname, Error **errp); |