* src/libvirt.c: fix bug in xenUnifiedDomainSuspend() patch provided

by Marcus Meissner
Daniel
This commit is contained in:
Daniel Veillard 2008-02-07 09:37:10 +00:00
parent 594af3eb22
commit b33f740e1f
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Feb 7 10:29:57 CET 2008 Daniel Veillard <veillard@redhat.com>
* src/libvirt.c: fix bug in xenUnifiedDomainSuspend() patch provided
by Marcus Meissner
Wed Feb 6 18:55:37 CET 2008 Daniel Veillard <veillard@redhat.com>
* src/xm_internal.[ch]: applied patch from Shigeki Sakamoto to
@ -216,6 +221,7 @@ Tue Jan 29 18:39:25 CET 2008 Jim Meyering <meyering@redhat.com>
* tests/xencapstest.c: Likewise.
* tests/xmconfigtest.c: Likewise.
>>>>>>> 1.995
Fri Jan 25 12:00:00 BST 2008 Richard W.M. Jones <rjones@redhat.com>
Clarify virsh documentation.

View File

@ -694,7 +694,7 @@ xenUnifiedDomainDestroy (virDomainPtr dom)
drivers[i]->domainDestroy (dom) == 0)
return 0;
if (priv->opened[i] &&
if (priv->opened[XEN_UNIFIED_HYPERVISOR_OFFSET] &&
drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainDestroy &&
drivers[XEN_UNIFIED_HYPERVISOR_OFFSET]->domainDestroy (dom) == 0)
return 0;