summaryrefslogtreecommitdiffstats
path: root/plugins-root/check_icmp.c
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-10-24 09:48:26 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-10-24 09:48:26 (GMT)
commit2024094a6e5e82c5bc15e4fde08900de62a3e8e8 (patch)
tree91dcc0c077daa376b102294bee475729a003b62f /plugins-root/check_icmp.c
parentb699c208e858032ffd1218a4e22cb822895fa097 (diff)
downloadmonitoring-plugins-2024094a6e5e82c5bc15e4fde08900de62a3e8e8.tar.gz
Fixed compile on non-glibc platforms
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1522 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-root/check_icmp.c')
-rw-r--r--plugins-root/check_icmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c
index 306113b..c4f6739 100644
--- a/plugins-root/check_icmp.c
+++ b/plugins-root/check_icmp.c
@@ -42,8 +42,9 @@
42* 42*
43*****************************************************************************/ 43*****************************************************************************/
44 44
45/* progname may be check_ldaps */ 45/* progname may change */
46//char *progname = "check_ldap"; 46/* char *progname = "check_icmp"; */
47char *progname;
47const char *revision = "$Revision$"; 48const char *revision = "$Revision$";
48const char *copyright = "2005-2006"; 49const char *copyright = "2005-2006";
49const char *email = "nagiosplug-devel@lists.sourceforge.net"; 50const char *email = "nagiosplug-devel@lists.sourceforge.net";
@@ -195,7 +196,6 @@ extern char *optarg;
195extern char **environ; 196extern char **environ;
196 197
197/** global variables **/ 198/** global variables **/
198static char *progname;
199static struct rta_host **table, *cursor, *list; 199static struct rta_host **table, *cursor, *list;
200static threshold crit = {80, 500000}, warn = {40, 200000}; 200static threshold crit = {80, 500000}, warn = {40, 200000};
201static int mode, protocols, sockets, debug = 0, timeout = 10; 201static int mode, protocols, sockets, debug = 0, timeout = 10;