From b2b78e85ac336220d863107f45866f3f9ea162dc Mon Sep 17 00:00:00 2001 From: "Peter A. Bigot" Date: Tue, 20 May 2014 10:08:15 -0500 Subject: [PATCH] rrd_daemon: move include of arpa/inet.h to avoid use on Windows arpa/inet.h may not be available on Windows systems; since I can't test that, avoid trying to include it there. Since the code that depends on it is conditional on a define that would be provided by it, there should be no impact from its absence except that somebody who uses Windows would have to rework the fix for ipv4-over-ipv6 for that platform. Signed-off-by: Peter A. Bigot --- src/rrd_daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rrd_daemon.c b/src/rrd_daemon.c index 742d258f..08f97595 100644 --- a/src/rrd_daemon.c +++ b/src/rrd_daemon.c @@ -78,6 +78,7 @@ #include #include #include +#include #else @@ -92,7 +93,6 @@ #include #include #include -#include #include #include #include -- 2.47.3