xen: Fix domain dump

Remove redundant 'live' parameter which caused an error from xend:

    "xend.err 'Too many values for live'"
This commit is contained in:
Jiri Denemark 2010-10-26 11:54:38 +02:00
parent eff1735e42
commit 608554f237

View File

@ -3026,7 +3026,7 @@ xenDaemonDomainCoreDump(virDomainPtr domain, const char *filename,
}
return xend_op(domain->conn, domain->name,
"op", "dump", "file", filename, "live", "0",
"op", "dump", "file", filename,
"live", (flags & VIR_DUMP_LIVE ? "1" : "0"),
"crash", (flags & VIR_DUMP_CRASH ? "1" : "0"),
NULL);