diff options
Diffstat (limited to 'migration-exec.c')
-rw-r--r-- | migration-exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/migration-exec.c b/migration-exec.c index 1c539de931..deab4e378e 100644 --- a/migration-exec.c +++ b/migration-exec.c @@ -35,8 +35,8 @@ void exec_start_outgoing_migration(MigrationState *s, const char *command, Error **errp) { - s->migration_file = qemu_popen_cmd(command, "w"); - if (s->migration_file == NULL) { + s->file = qemu_popen_cmd(command, "w"); + if (s->file == NULL) { error_setg_errno(errp, errno, "failed to popen the migration target"); return; } |