mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
* src/xend_internal.c: applied patch from Kazuki Mizushima, an
inversion between shutoff and shutdown flags * po/* doc/*: automatic update Daniel
This commit is contained in:
parent
a534de5281
commit
98d3a3f1f8
@ -1,3 +1,9 @@
|
||||
Wed Mar 14 14:12:32 CET 2007 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* src/xend_internal.c: applied patch from Kazuki Mizushima, an
|
||||
inversion between shutoff and shutdown flags
|
||||
* po/* doc/*: automatic update
|
||||
|
||||
Tue Mar 13 18:04:14 EST 2007 Daniel P. Berrange <berrange@redhat.com>
|
||||
|
||||
* qemud/qemud.c: Use the --dhcp-leasefile arg to dnsmasq to
|
||||
|
@ -3,5 +3,3 @@ Makefile.in
|
||||
Makefile
|
||||
info1
|
||||
suspend
|
||||
.libs
|
||||
.deps
|
||||
|
@ -10,12 +10,12 @@
|
||||
<includes>
|
||||
</includes>
|
||||
<uses>
|
||||
<function line='43' name='virDomainGetInfo'/>
|
||||
<function line='53' name='virDomainFree'/>
|
||||
<function line='36' name='virDomainLookupByID'/>
|
||||
<function line='55' name='virConnectClose'/>
|
||||
<type line='25' name='virDomainInfo'/>
|
||||
<function line='29' name='virConnectOpenReadOnly'/>
|
||||
<function line='43' file='libvirt' name='virDomainGetInfo'/>
|
||||
<function line='53' file='libvirt' name='virDomainFree'/>
|
||||
<function line='36' file='libvirt' name='virDomainLookupByID'/>
|
||||
<function line='55' file='libvirt' name='virConnectClose'/>
|
||||
<struct line='25' file='libvirt' name='virDomainInfo'/>
|
||||
<function line='29' file='libvirt' name='virConnectOpenReadOnly'/>
|
||||
</uses>
|
||||
</example>
|
||||
<example filename='suspend.c'>
|
||||
@ -29,15 +29,15 @@
|
||||
<includes>
|
||||
</includes>
|
||||
<uses>
|
||||
<function line='31' name='virDomainGetInfo'/>
|
||||
<function line='111' name='virConnectListDomains'/>
|
||||
<function line='93' name='virDomainFree'/>
|
||||
<function line='73' name='virDomainResume'/>
|
||||
<function line='50' name='virDomainLookupByID'/>
|
||||
<function line='132' name='virConnectClose'/>
|
||||
<type line='28' name='virDomainInfo'/>
|
||||
<function line='62' name='virDomainSuspend'/>
|
||||
<function line='100' name='virConnectOpenReadOnly'/>
|
||||
<function line='31' file='libvirt' name='virDomainGetInfo'/>
|
||||
<function line='111' file='libvirt' name='virConnectListDomains'/>
|
||||
<function line='93' file='libvirt' name='virDomainFree'/>
|
||||
<function line='73' file='libvirt' name='virDomainResume'/>
|
||||
<function line='50' file='libvirt' name='virDomainLookupByID'/>
|
||||
<function line='132' file='libvirt' name='virConnectClose'/>
|
||||
<struct line='28' file='libvirt' name='virDomainInfo'/>
|
||||
<function line='62' file='libvirt' name='virDomainSuspend'/>
|
||||
<function line='100' file='libvirt' name='virConnectOpenReadOnly'/>
|
||||
</uses>
|
||||
</example>
|
||||
<symbols>
|
||||
|
943
po/bn_IN.po
943
po/bn_IN.po
File diff suppressed because it is too large
Load Diff
754
po/en_GB.po
754
po/en_GB.po
File diff suppressed because it is too large
Load Diff
983
po/eu_ES.po
983
po/eu_ES.po
File diff suppressed because it is too large
Load Diff
754
po/libvirt.pot
754
po/libvirt.pot
File diff suppressed because it is too large
Load Diff
943
po/pt_BR.po
943
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
943
po/sr@Latn.po
943
po/sr@Latn.po
File diff suppressed because it is too large
Load Diff
943
po/zh_CN.po
943
po/zh_CN.po
File diff suppressed because it is too large
Load Diff
943
po/zh_TW.po
943
po/zh_TW.po
File diff suppressed because it is too large
Load Diff
@ -1722,9 +1722,9 @@ sexpr_to_xend_domain_info(virDomainPtr domain, struct sexpr *root, virDomainInfo
|
||||
if (strchr(flags, 'c'))
|
||||
info->state = VIR_DOMAIN_CRASHED;
|
||||
else if (strchr(flags, 's'))
|
||||
info->state = VIR_DOMAIN_SHUTDOWN;
|
||||
else if (strchr(flags, 'd'))
|
||||
info->state = VIR_DOMAIN_SHUTOFF;
|
||||
else if (strchr(flags, 'd'))
|
||||
info->state = VIR_DOMAIN_SHUTDOWN;
|
||||
else if (strchr(flags, 'p'))
|
||||
info->state = VIR_DOMAIN_PAUSED;
|
||||
else if (strchr(flags, 'b'))
|
||||
|
Loading…
Reference in New Issue
Block a user