From 9bf002ff7935e7dff625683787fc3a06ac2ef2cb Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Sat, 21 Feb 2009 19:13:06 +0100 Subject: 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 --- src/mcast.c | 1 + src/sync-mode.c | 1 + 2 files changed, 2 insertions(+) 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 #include #include +#include #include struct mcast_sock *mcast_server_create(struct mcast_conf *conf) diff --git a/src/sync-mode.c b/src/sync-mode.c index d1a941b..26e1358 100644 --- a/src/sync-mode.c +++ b/src/sync-mode.c @@ -32,6 +32,7 @@ #include #include #include +#include #include static void -- cgit v1.2.3