Fix <boot> syntax

This commit is contained in:
Daniel P. Berrange 2007-05-11 14:24:02 +00:00
parent 99370101de
commit ac2d00c498
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu May 11 10:20:00 EST 2007 Daniel P. Berrange <berrange@redhat.com>
* src/xm_internal.c: Fix boot device XML syntax
Thu May 11 10:20:00 EST 2007 Daniel P. Berrange <berrange@redhat.com>
* src/xend_internal.c: Ignore old style VNC config for HVM

View File

@ -631,7 +631,7 @@ char *xenXMDomainFormatXML(virConnectPtr conn, virConfPtr conf) {
dev = "hd";
break;
}
virBufferVSprintf(buf, " <boot>%s</boot>\n", dev);
virBufferVSprintf(buf, " <boot dev='%s'/>\n", dev);
boot++;
}