From 58c91485b9b28a866715fc013d23236470699940 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Fri, 25 Dec 2015 11:14:01 +0100 Subject: [PATCH] uuid plugin: make it work on FreeBSD --- src/uuid.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/uuid.c b/src/uuid.c index 9e9a7a33..816e624a 100644 --- a/src/uuid.c +++ b/src/uuid.c @@ -114,7 +114,7 @@ uuid_get_from_dmidecode(void) return (uuid); } -#if defined(__APPLE__) +#if defined(__APPLE__) || defined(__FreeBSD__) static char * uuid_get_from_sysctlbyname(const char *name) { @@ -212,8 +212,10 @@ uuid_get_local(void) #if defined(__APPLE__) if ((uuid = uuid_get_from_sysctlbyname("kern.uuid")) != NULL) return (uuid); -#endif -#if defined(__linux__) +#elif defined(__FreeBSD__) + if ((uuid = uuid_get_from_sysctlbyname("kern.hostuuid")) != NULL) + return (uuid); +#elif defined(__linux__) if ((uuid = uuid_get_from_file("/sys/class/dmi/id/product_uuid")) != NULL) return (uuid); #endif -- 2.11.0