diff options
author | zhanghailiang <zhang.zhanghailiang@huawei.com> | 2016-01-15 11:37:42 +0800 |
---|---|---|
committer | Amit Shah <amit.shah@redhat.com> | 2016-02-05 19:09:50 +0530 |
commit | 89a02a9f7bb6a371a42d9b26b76f4c9590548a03 (patch) | |
tree | 0658190a5520b02461c030caca22f5474f8e5d11 /migration/fd.c | |
parent | 4c4bad486186fed9631b4ceb7c06d24e9fa65e6f (diff) | |
download | qemu-89a02a9f7bb6a371a42d9b26b76f4c9590548a03.tar.gz qemu-89a02a9f7bb6a371a42d9b26b76f4c9590548a03.tar.bz2 qemu-89a02a9f7bb6a371a42d9b26b76f4c9590548a03.zip |
migration: rename 'file' in MigrationState to 'to_dst_file'
Rename the 'file' member of MigrationState to 'to_dst_file' to
be consistent with to_src_file, from_src_file and from_dst_file.
Signed-off-by: zhanghailiang <zhang.zhanghailiang@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Amit Shah <amit.shah@redhat.com>
Message-Id: <1452829066-9764-3-git-send-email-zhang.zhanghailiang@huawei.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'migration/fd.c')
-rw-r--r-- | migration/fd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/migration/fd.c b/migration/fd.c index c0afc96c2a..085dd7c51e 100644 --- a/migration/fd.c +++ b/migration/fd.c @@ -51,9 +51,9 @@ void fd_start_outgoing_migration(MigrationState *s, const char *fdname, Error ** } if (fd_is_socket(fd)) { - s->file = qemu_fopen_socket(fd, "wb"); + s->to_dst_file = qemu_fopen_socket(fd, "wb"); } else { - s->file = qemu_fdopen(fd, "wb"); + s->to_dst_file = qemu_fdopen(fd, "wb"); } migrate_fd_connect(s); |