diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-31 20:30:38 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-31 20:30:38 +0000 |
commit | 165f5b394fa337e71e08435b51108f4394199b2b (patch) | |
tree | 8cf42affbf54f2312b3202f9d5ca47c0f78d59d7 | |
parent | d943af058b36aa4847aabb07fe018780c994ae63 (diff) | |
download | busybox-w32-165f5b394fa337e71e08435b51108f4394199b2b.tar.gz busybox-w32-165f5b394fa337e71e08435b51108f4394199b2b.tar.bz2 busybox-w32-165f5b394fa337e71e08435b51108f4394199b2b.zip |
tcpudp: trivial build fix
-rw-r--r-- | networking/tcpudp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/tcpudp.c b/networking/tcpudp.c index 5da4de505..0b604af48 100644 --- a/networking/tcpudp.c +++ b/networking/tcpudp.c | |||
@@ -29,10 +29,10 @@ | |||
29 | * - don't know how to retrieve ORIGDST for udp. | 29 | * - don't know how to retrieve ORIGDST for udp. |
30 | */ | 30 | */ |
31 | 31 | ||
32 | #include <limits.h> | ||
33 | #include <linux/netfilter_ipv4.h> /* wants <limits.h> */ | ||
34 | |||
35 | #include "libbb.h" | 32 | #include "libbb.h" |
33 | /* Wants <limits.h> etc, thus included after libbb.h: */ | ||
34 | #include <linux/netfilter_ipv4.h> | ||
35 | |||
36 | // TODO: move into this file: | 36 | // TODO: move into this file: |
37 | #include "tcpudp_perhost.h" | 37 | #include "tcpudp_perhost.h" |
38 | 38 | ||