summaryrefslogtreecommitdiffstats
path: root/plugins/check_fping.c
diff options
context:
space:
mode:
authorBenoit Mortier <opensides@users.sourceforge.net>2004-12-03 00:55:28 (GMT)
committerBenoit Mortier <opensides@users.sourceforge.net>2004-12-03 00:55:28 (GMT)
commit016d33230eb4fffd7e1f5644ce4901cb4d01f4e3 (patch)
tree1a6f29dcfd937bccffb66467127613b660d55365 /plugins/check_fping.c
parent3f05eb7fcb71942c90fa7d5796c3d18ed62443cf (diff)
downloadmonitoring-plugins-016d33230eb4fffd7e1f5644ce4901cb4d01f4e3.tar.gz
bump copyright year
initialize result to STATE_UNKNOW in place of STATE_OK git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@982 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_fping.c')
-rw-r--r--plugins/check_fping.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/check_fping.c b/plugins/check_fping.c
index 817d647..46d4beb 100644
--- a/plugins/check_fping.c
+++ b/plugins/check_fping.c
@@ -20,7 +20,7 @@
20 20
21const char *progname = "check_fping"; 21const char *progname = "check_fping";
22const char *revision = "$Revision$"; 22const char *revision = "$Revision$";
23const char *copyright = "2000-2003"; 23const char *copyright = "2000-2004";
24const char *email = "nagiosplug-devel@lists.sourceforge.net"; 24const char *email = "nagiosplug-devel@lists.sourceforge.net";
25 25
26#include "common.h" 26#include "common.h"
@@ -57,6 +57,8 @@ int wrta_p = FALSE;
57int 57int
58main (int argc, char **argv) 58main (int argc, char **argv)
59{ 59{
60/* normaly should be int result = STATE_UNKNOWN; */
61
60 int status = STATE_UNKNOWN; 62 int status = STATE_UNKNOWN;
61 char *server = NULL; 63 char *server = NULL;
62 char *command_line = NULL; 64 char *command_line = NULL;