From 4218f98f09f2155823f01846502c9373d660aa5a Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Tue, 9 Mar 2021 11:18:53 +0100 Subject: [PATCH 020/108] util: Fix error reporting in virnetlink The preprocessor macro we use to check whether we're on Linux has not been spelled properly, and so we will always report the error message intended for other platforms. Fixes: 879bcee08ce0f91f556fddfe452c3fbed5318468 Signed-off-by: Andrea Bolognani Reviewed-by: Michal Privoznik (cherry picked from commit 9b2f6c103028ae2dfab21f152f69352a1bfd72b9) --- src/util/virnetlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/virnetlink.c b/src/util/virnetlink.c index 3117dcbe65..a49c29a169 100644 --- a/src/util/virnetlink.c +++ b/src/util/virnetlink.c @@ -1215,7 +1215,7 @@ virNetlinkEventRemoveClient(int watch, const virMacAddr *macaddr, #else -# if defined(__linux) +# if defined(__linux__) static const char *unsupported = N_("libnl was not available at build time"); # else static const char *unsupported = N_("not supported on non-linux platforms"); -- 2.33.0