We weren't handling the network interface type correctly and also outputting incorrect XML Signed-off-by: Mark McLoughlin Index: libvirt/qemud/conf.c =================================================================== --- libvirt.orig/qemud/conf.c +++ libvirt/qemud/conf.c @@ -1876,6 +1876,7 @@ char *qemudGenerateXML(struct qemud_serv "server", "client", "mcast", + "network", "vde", }; if (qemudBufferPrintf(&buf, " \n", @@ -1890,7 +1891,7 @@ char *qemudGenerateXML(struct qemud_serv goto no_memory; if (net->type == QEMUD_NET_NETWORK) { - if (qemudBufferPrintf(&buf, " dst.network.name) < 0) + if (qemudBufferPrintf(&buf, " dst.network.name) < 0) goto no_memory; if (net->dst.network.tapifname[0] != '\0' && --