[NETFILTER]: Use __u32 in struct nf_inet_addr As reported by David Woodhouse <dwmw2@xxxxxxxxxxxxx>, using u_int32_t in struct nf_inet_addr breaks the busybox build. Fix by using __u32. Signed-off-by: Patrick McHardy <kaber@xxxxxxxxx> --- commit 4f4e9be33da8cc1a297c4d7ef51c1fa1effcbace tree a856969ae8edeebca7c8018e18e4304cd198e529 parent 5a090319a35aac1052102d97c431230d3140daf1 author Patrick McHardy <kaber@xxxxxxxxx> Tue, 19 Feb 2008 17:15:29 +0100 committer Patrick McHardy <kaber@xxxxxxxxx> Tue, 19 Feb 2008 17:15:29 +0100 include/linux/netfilter.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/netfilter.h b/include/linux/netfilter.h index d74e79b..b74b615 100644 --- a/include/linux/netfilter.h +++ b/include/linux/netfilter.h @@ -51,7 +51,7 @@ enum nf_inet_hooks { }; union nf_inet_addr { - u_int32_t all[4]; + __u32 all[4]; __be32 ip; __be32 ip6[4]; struct in_addr in; - To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html