From: Cole Robinson Date: Sun, 29 Jan 2012 19:10:00 +0000 (-0500) Subject: xen: Don't add to xml for dom0 X-Git-Tag: v0.9.10-rc1~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efb0839c1d5471ab70ad81a36372c5cb6e5ed9a6;p=thirdparty%2Flibvirt.git xen: Don't add to xml for dom0 It just doesn't really make sense and confuses virt-manager --- diff --git a/src/xenxs/xen_sxpr.c b/src/xenxs/xen_sxpr.c index 7a53f943e7..09e7730716 100644 --- a/src/xenxs/xen_sxpr.c +++ b/src/xenxs/xen_sxpr.c @@ -1392,7 +1392,7 @@ xenParseSxpr(const struct sexpr *root, chr->target.port = 0; def->parallels[def->nparallels++] = chr; } - } else { + } else if (def->id != 0) { def->nconsoles = 1; if (VIR_ALLOC_N(def->consoles, 1) < 0) goto no_memory;