blob: 71aed48d476b3782cfdd5cd398d9c52ef9df4d0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
From 81bd67e0e190b01266d12e98f4feb41766b7fcfb Mon Sep 17 00:00:00 2001
From: Michael Forney <mforney@mforney.org>
Date: Thu, 17 Feb 2022 23:07:55 -0800
Subject: [PATCH] Include linux ax25.h header
Fixes the build with musl libc.
---
lib/ax25_ntop.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/ax25_ntop.c b/lib/ax25_ntop.c
index cfd0e04b..3a72a43e 100644
--- a/lib/ax25_ntop.c
+++ b/lib/ax25_ntop.c
@@ -2,7 +2,7 @@
#include <errno.h>
#include <sys/socket.h>
-#include <netax25/ax25.h>
+#include <linux/ax25.h>
#include "utils.h"
--
2.34.1
|