Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7b33ed22194d8f0dbcf682f5cdf5b9c2ef551e7c Commit: 7b33ed22194d8f0dbcf682f5cdf5b9c2ef551e7c Parent: 27ecb1ff0afa2260e6856c05efd6fedcd0cc76b9 Author: Patrick McHardy <[EMAIL PROTECTED]> AuthorDate: Tue Feb 19 17:20:33 2008 -0800 Committer: David S. Miller <[EMAIL PROTECTED]> CommitDate: Tue Feb 19 17:20:33 2008 -0800
[NETFILTER]: Use __u32 in struct nf_inet_addr As reported by David Woodhouse <[EMAIL PROTECTED]>, using u_int32_t in struct nf_inet_addr breaks the busybox build. Fix by using __u32. Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]> Signed-off-by: David S. Miller <[EMAIL PROTECTED]> --- 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 git-commits-head" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html