]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
17dd0324343b9e18e932eceed0bae33d9b83fb3e
[thirdparty/openembedded/openembedded-core-contrib.git] /
1 From 796b8f6fc1e584c27c42ba302f623fd1c5aa0667 Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex@linutronix.de>
3 Date: Tue, 17 May 2022 10:56:59 +0200
4 Subject: [PATCH] iptables/xshared.h: add missing sys.types.h include
5
6 This resolves the build error under musl:
7
8 | ../../../../../../../workspace/sources/iptables/iptables/xshared.h:83:56: error: unknown type name 'u_int16_t'; did you mean 'uint16_t'?
9 | 83 | set_option(unsigned int *options, unsigned int option, u_int16_t *invflg,
10 | | ^~~~~~~~~
11 | | uint16_t
12
13 Upstream-Status: Submitted [via email to phil@nwl.cc]
14 Signed-off-by: Alexander Kanavin <alex@linutronix.de>
15 ---
16 iptables/xshared.h | 1 +
17 1 file changed, 1 insertion(+)
18
19 diff --git a/iptables/xshared.h b/iptables/xshared.h
20 index 14568bb..73b1017 100644
21 --- a/iptables/xshared.h
22 +++ b/iptables/xshared.h
23 @@ -6,6 +6,7 @@
24 #include <stdint.h>
25 #include <netinet/in.h>
26 #include <net/if.h>
27 +#include <sys/types.h>
28 #include <linux/netfilter_arp/arp_tables.h>
29 #include <linux/netfilter_ipv4/ip_tables.h>
30 #include <linux/netfilter_ipv6/ip6_tables.h>