mirror of
https://github.com/libvirt/libvirt.git
synced 2026-09-03 20:53:04 -05:00
Xen: xenconfig: remove xendConfigVersion from public functions
Remove use of xendConfigVersion in the xm and xl config formatter/parsers in src/xenconfig/. Adjust callers in the xen and libxl drivers accordingly. Signed-off-by: Jim Fehlig <jfehlig@suse.com>
This commit is contained in:
@@ -70,7 +70,7 @@ testCompareParseXML(const char *xmcfg, const char *xml)
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (!(conf = xenFormatXL(def, conn, 4)))
|
||||
if (!(conf = xenFormatXL(def, conn)))
|
||||
goto fail;
|
||||
|
||||
if (virConfWriteMem(gotxmcfgData, &wrote, conf) < 0)
|
||||
@@ -113,7 +113,7 @@ testCompareFormatXML(const char *xmcfg, const char *xml)
|
||||
if (!(conf = virConfReadMem(xmcfgData, strlen(xmcfgData), 0)))
|
||||
goto fail;
|
||||
|
||||
if (!(def = xenParseXL(conf, caps, xmlopt, 4)))
|
||||
if (!(def = xenParseXL(conf, caps, xmlopt)))
|
||||
goto fail;
|
||||
|
||||
if (!(gotxml = virDomainDefFormat(def, VIR_DOMAIN_XML_INACTIVE |
|
||||
|
||||
Reference in New Issue
Block a user