From d5353983686ad6f4ba156206d0bf430af09d1fad Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Sun, 24 Jul 2016 16:47:40 +0200 Subject: [PATCH] uuid plugin: fix inclusion of libhal.h Follow up of 34db18b --- src/uuid.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uuid.c b/src/uuid.c index 50882179..3836e521 100644 --- a/src/uuid.c +++ b/src/uuid.c @@ -28,7 +28,7 @@ #include "configfile.h" #include "plugin.h" -#if HAVE_LIBHAL +#if HAVE_LIBHAL_H #include #endif @@ -107,7 +107,7 @@ uuid_get_from_dmidecode(void) return uuid; } -#if HAVE_LIBHAL +#if HAVE_LIBHAL_H #define UUID_PATH "/org/freedesktop/Hal/devices/computer" #define UUID_PROPERTY "smbios.system.uuid" @@ -199,7 +199,7 @@ uuid_get_local(void) return uuid; } -#if HAVE_LIBHAL +#if HAVE_LIBHAL_H if ((uuid = uuid_get_from_hal()) != NULL) { return uuid; } -- 2.11.0