From: Sam James Date: Thu, 13 Jan 2022 08:14:13 +0000 (+0000) Subject: lib: fix ax25.h include for musl X-Git-Tag: v5.17.0~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bced38a941a181f1468fa39541e872e51b6022f;p=thirdparty%2Fiproute2.git lib: fix ax25.h include for musl ax25.h isn't guaranteed to be avilable in netax25/*; it's dependent on our choice of libc (it's not available on musl at least) [0]. Let's use the version from linux-headers. [0] https://sourceware.org/glibc/wiki/Synchronizing_Headers Bug: https://bugs.gentoo.org/831102 Signed-off-by: Sam James Signed-off-by: Stephen Hemminger --- diff --git a/lib/ax25_ntop.c b/lib/ax25_ntop.c index cfd0e04b0..3a72a43e9 100644 --- a/lib/ax25_ntop.c +++ b/lib/ax25_ntop.c @@ -2,7 +2,7 @@ #include #include -#include +#include #include "utils.h"