From: Daniel Veillard Date: Fri, 1 Jun 2007 14:03:24 +0000 (+0000) Subject: * src/xml.c: added a comment about (type ioemu) not needed X-Git-Tag: LIVIRT_0_2_3~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae35e97ec86a911b9967deddf50f1715cb9956cd;p=thirdparty%2Flibvirt.git * src/xml.c: added a comment about (type ioemu) not needed for interfaces on xen 3.1 as pointed by Saori Fukuta Daniel --- diff --git a/ChangeLog b/ChangeLog index 22a2a51617..8bb3e8ebe4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Jun 1 16:02:12 CEST 2007 Daniel Veillard + + * src/xml.c: added a comment about (type ioemu) not needed + for interfaces on xen 3.1 as pointed by Saori Fukuta + Tue May 29 15:56:00 BST 2007 Richard W.M. Jones * python/generator.py, python/libvir.c, python/libvir.py: diff --git a/src/xml.c b/src/xml.c index a5894a49a7..bcce322006 100644 --- a/src/xml.c +++ b/src/xml.c @@ -1129,6 +1129,7 @@ virDomainParseXMLIfDesc(virConnectPtr conn ATTRIBUTE_UNUSED, xmlNodePtr node, vi virBufferVSprintf(buf, "(script '%s')", script); if (ip != NULL) virBufferVSprintf(buf, "(ip '%s')", ip); + /* apparently not needed any more for xen >= 3.1 but harmless */ if (hvm) virBufferAdd(buf, "(type ioemu)", 12);