mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-18 10:35:20 +00:00
Build failure fixed.
* src/domain_conf.c: Fix build failure of the Xen proxy.
This commit is contained in:
parent
6ac274673c
commit
c13f07fc88
@ -1,3 +1,8 @@
|
|||||||
|
Mon Oct 13 16:22:00 BST 2008 Richard W.M. Jones <rjones@redhat.com>
|
||||||
|
|
||||||
|
Build failure fixed.
|
||||||
|
* src/domain_conf.c: Fix build failure of the Xen proxy.
|
||||||
|
|
||||||
Sat Oct 11 09:23:18 CEST 2008 Jim Meyering <meyering@redhat.com>
|
Sat Oct 11 09:23:18 CEST 2008 Jim Meyering <meyering@redhat.com>
|
||||||
|
|
||||||
testError format strings: explicitly include domain and network names
|
testError format strings: explicitly include domain and network names
|
||||||
|
@ -493,7 +493,6 @@ void virDomainRemoveInactive(virDomainObjListPtr doms,
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef PROXY
|
|
||||||
int virDomainDiskCompare(virDomainDiskDefPtr a,
|
int virDomainDiskCompare(virDomainDiskDefPtr a,
|
||||||
virDomainDiskDefPtr b) {
|
virDomainDiskDefPtr b) {
|
||||||
if (a->bus == b->bus)
|
if (a->bus == b->bus)
|
||||||
@ -503,6 +502,7 @@ int virDomainDiskCompare(virDomainDiskDefPtr a,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef PROXY
|
||||||
/* Parse the XML definition for a disk
|
/* Parse the XML definition for a disk
|
||||||
* @param node XML nodeset to parse for disk definition
|
* @param node XML nodeset to parse for disk definition
|
||||||
*/
|
*/
|
||||||
@ -1695,6 +1695,7 @@ virDomainDeviceDefPtr virDomainDeviceDefParse(virConnectPtr conn,
|
|||||||
VIR_FREE(dev);
|
VIR_FREE(dev);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
int virDomainDiskQSort(const void *a, const void *b)
|
int virDomainDiskQSort(const void *a, const void *b)
|
||||||
{
|
{
|
||||||
@ -1704,7 +1705,7 @@ int virDomainDiskQSort(const void *a, const void *b)
|
|||||||
return virDomainDiskCompare(*da, *db);
|
return virDomainDiskCompare(*da, *db);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef PROXY
|
||||||
static virDomainDefPtr virDomainDefParseXML(virConnectPtr conn,
|
static virDomainDefPtr virDomainDefParseXML(virConnectPtr conn,
|
||||||
virCapsPtr caps,
|
virCapsPtr caps,
|
||||||
xmlXPathContextPtr ctxt)
|
xmlXPathContextPtr ctxt)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user