* src/xml-internal.c: apply patch from Hiroyuki Kaguchi to
preserve the vif list order.
Daniel
+Mon Jan 21 09:25:12 CET 2008 Daniel Veillard <veillard@redhat.com>
+
+ * src/xml-internal.c: apply patch from Hiroyuki Kaguchi to
+ preserve the vif list order.
+
Mon Jan 21 09:06:28 CET 2008 Daniel Veillard <veillard@redhat.com>
* docs/API* docs/api.xsl docs/site.xsl docs/Makefile.am: remove the
}
vifs->type = VIR_CONF_LIST;
vifs->list = NULL;
- for (i = 0; i < obj->nodesetval->nodeNr; i++) {
+ for (i = obj->nodesetval->nodeNr - 1; i >= 0; i--) {
virConfValuePtr thisVif;
char *vif = xenXMParseXMLVif(conn, obj->nodesetval->nodeTab[i], hvm);
if (!vif)