]> xenbits.xensource.com Git - libvirt.git/commitdiff
xen: Fix domain dump
authorJiri Denemark <jdenemar@redhat.com>
Tue, 26 Oct 2010 09:54:38 +0000 (11:54 +0200)
committerJiri Denemark <jdenemar@redhat.com>
Tue, 26 Oct 2010 11:06:47 +0000 (13:06 +0200)
Remove redundant 'live' parameter which caused an error from xend:

    "xend.err 'Too many values for live'"

src/xen/xend_internal.c

index b90c33140f39a0400cb3c749de85f829ec31fcb5..bce911efcfa4818057cdd4fd376008a166f175ae 100644 (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);