forked from pool/libvirt
0d01ad3986
- Update to libvirt 3.6.0 - Many incremental improvements and bug fixes, see http://libvirt.org/news.html - Fix unit tests on s390x and ppc64 8982f3ab-util-hash-header.patch, 0b1ecf7b-virHashCodeGen-mockable.patch. f536b0dd-tests-arch-independent-hash.patch - Patch cleanup - Renamed libvirtd-defaults.patch to suse-libvirtd-disable-tls.patch - Renamed libvirtd-init-script.patch to suse-libvirtd-sysconfig-settings.patch - Renamed virtlockd-init-script.patch to suse-virtlockd-sysconfig-settings.patch - Renamed virtlogd-init-script.patch to suse-virtlogd-sysconfig-settings.patch - Renamed libvirt-guests-init-script.patch to suse-libvirt-guests-service.patch - Combined suse-libvirtd-service.patch and systemd-service-xen.patch to suse-libvirtd-service-xen.patch since both patches add Xen support to libvirtd service file - Pull OVMF-related changes from suse-qemu-conf.patch into a new suse-ovmf-paths.patch - Add a supportconfig plugin libvirt-supportconfig FATE#323661 OBS-URL: https://build.opensuse.org/request/show/514264 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=615
22 lines
580 B
Diff
22 lines
580 B
Diff
commit 8982f3ab20194e23e34205c4165602a03ada8b56
|
|
Author: Peter Krempa <pkrempa@redhat.com>
|
|
Date: Wed Aug 2 17:28:55 2017 +0200
|
|
|
|
util: hash: Include stdbool.h in the header file
|
|
|
|
The functions declared in virhash.h return bool, but stdbool.h was not
|
|
included.
|
|
|
|
Index: libvirt-3.6.0/src/util/virhash.h
|
|
===================================================================
|
|
--- libvirt-3.6.0.orig/src/util/virhash.h
|
|
+++ libvirt-3.6.0/src/util/virhash.h
|
|
@@ -14,6 +14,7 @@
|
|
# define __VIR_HASH_H__
|
|
|
|
# include <stdint.h>
|
|
+# include <stdbool.h>
|
|
|
|
/*
|
|
* The hash table.
|