diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-02-21 19:13:06 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-02-21 19:13:06 +0100 |
commit | 9bf002ff7935e7dff625683787fc3a06ac2ef2cb (patch) | |
tree | fd8486ea4c3ba82b55ec1f18f8c5500a40713c63 /src/mcast.c | |
parent | 87c8c090e1b64eac27edb968845cb1e8ee65b06b (diff) | |
download | conntrack-tools-9bf002ff7935e7dff625683787fc3a06ac2ef2cb.tar.gz conntrack-tools-9bf002ff7935e7dff625683787fc3a06ac2ef2cb.zip |
src: fix compilation issue in gentoo due to missing include limits.h
This patch adds include limits.h to mcast.c and sync-mode.c. Why Gentoo
maintainers did not report me the problem? :(
http://bugs.gentoo.org/show_bug.cgi?id=256497
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/mcast.c')
-rw-r--r-- | src/mcast.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mcast.c b/src/mcast.c index ba472f6..8f11762 100644 --- a/src/mcast.c +++ b/src/mcast.c @@ -28,6 +28,7 @@ #include <sys/ioctl.h> #include <net/if.h> #include <errno.h> +#include <limits.h> #include <libnfnetlink/libnfnetlink.h> struct mcast_sock *mcast_server_create(struct mcast_conf *conf) |