Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7b33ed22 authored by Patrick McHardy's avatar Patrick McHardy Committed by David S. Miller
Browse files

[NETFILTER]: Use __u32 in struct nf_inet_addr



As reported by David Woodhouse <dwmw2@infradead.org>, using u_int32_t
in struct nf_inet_addr breaks the busybox build. Fix by using __u32.

Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 27ecb1ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -51,7 +51,7 @@ enum nf_inet_hooks {
};
};


union nf_inet_addr {
union nf_inet_addr {
	u_int32_t	all[4];
	__u32		all[4];
	__be32		ip;
	__be32		ip;
	__be32		ip6[4];
	__be32		ip6[4];
	struct in_addr	in;
	struct in_addr	in;