From 7073693bfbde541eca0cc778e1b2c30d43a65c4b Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Wed, 23 Feb 2011 00:43:59 +0100 Subject: migration: Export a function that tells if the migration has finished correctly This will allow us to hide the state values. Signed-off-by: Juan Quintela --- ui/spice-core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui') diff --git a/ui/spice-core.c b/ui/spice-core.c index 3cbc721ee4..b33366e5d7 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -447,9 +447,9 @@ void do_info_spice(Monitor *mon, QObject **ret_data) static void migration_state_notifier(Notifier *notifier, void *data) { - int state = get_migration_state(); + MigrationState *s = data; - if (state == MIG_STATE_COMPLETED) { + if (migration_has_finished(s)) { #if SPICE_SERVER_VERSION >= 0x000701 /* 0.7.1 */ spice_server_migrate_switch(spice_server); #endif -- cgit v1.2.1