From: Jim Fehlig Date: Thu, 2 May 2013 21:54:22 +0000 (-0600) Subject: build: Fix build when WITH_HAL is defined X-Git-Tag: CVE-2013-1962~216 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce45c761d0edc86b12a0bbaf33c6bde64f3b1323;p=thirdparty%2Flibvirt.git build: Fix build when WITH_HAL is defined Commit 7c9a2d88 missed inclusion of virstring.h in a few places when WITH_HAL is defined, causing build failures. --- diff --git a/src/node_device/node_device_driver.c b/src/node_device/node_device_driver.c index 95df2e5a7f..05dc49c595 100644 --- a/src/node_device/node_device_driver.c +++ b/src/node_device/node_device_driver.c @@ -33,6 +33,7 @@ #include "datatypes.h" #include "viralloc.h" #include "virlog.h" +#include "virstring.h" #include "node_device_conf.h" #include "node_device_hal.h" #include "node_device_driver.h" diff --git a/src/node_device/node_device_hal.c b/src/node_device/node_device_hal.c index 63245a9c14..8c77cc3aa8 100644 --- a/src/node_device/node_device_hal.c +++ b/src/node_device/node_device_hal.c @@ -39,6 +39,7 @@ #include "virlog.h" #include "node_device_driver.h" #include "virdbus.h" +#include "virstring.h" #define VIR_FROM_THIS VIR_FROM_NODEDEV