From 1544007dcf0ba19659efc08ca88638e3e2adc4a4 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Fri, 21 Dec 2007 14:19:08 +0000 Subject: Fix INADDR_NONE value (for systems which don't define it). git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1884 f882894a-f735-0410-b71e-b25c423dba1c diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index 77ddfee..1ddc756 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c @@ -84,7 +84,7 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net"; # define MAXTTL 255 #endif #ifndef INADDR_NONE -# define INADDR_NONE 0xffffffU +# define INADDR_NONE (in_addr_t)(-1) #endif #ifndef SOL_IP -- cgit v0.10-9-g596f