commit | dcd1d224dfcad1154a516e683ab55ea848497f50 | [log] [tgz] |
---|---|---|
author | Juan Quintela <quintela@redhat.com> | Wed Sep 21 23:01:54 2011 +0200 |
committer | Juan Quintela <quintela@redhat.com> | Thu Oct 20 13:23:52 2011 +0200 |
tree | 41ff40193382ba0ad72dba2116a43c359935ce8e | |
parent | af509450816d17b4cbfff673be21b830f05018fc [diff] [blame] |
migration: change has_error to contain errno values We normally already have an errno value. When not, abuse EIO. Signed-off-by: Juan Quintela <quintela@redhat.com>
diff --git a/migration.c b/migration.c index a682168..d5876a9 100644 --- a/migration.c +++ b/migration.c
@@ -455,7 +455,7 @@ } while (ret == -1 && (s->get_error(s)) == EINTR); if (ret == -1) { - qemu_file_set_error(s->file); + qemu_file_set_error(s->file, -s->get_error(s)); } }