From 016d33230eb4fffd7e1f5644ce4901cb4d01f4e3 Mon Sep 17 00:00:00 2001 From: Benoit Mortier Date: Fri, 3 Dec 2004 00:55:28 +0000 Subject: 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 --- plugins/check_time.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/check_time.c') diff --git a/plugins/check_time.c b/plugins/check_time.c index ee6ff438..8381fb2f 100644 --- a/plugins/check_time.c +++ b/plugins/check_time.c @@ -18,15 +18,15 @@ ******************************************************************************/ -#include "common.h" -#include "netutils.h" -#include "utils.h" - const char *progname = "check_time"; const char *revision = "$Revision$"; -const char *copyright = "1999-2003"; +const char *copyright = "1999-2004"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; +#include "common.h" +#include "netutils.h" +#include "utils.h" + enum { TIME_PORT = 37 }; @@ -55,7 +55,7 @@ int main (int argc, char **argv) { int sd; - int result; + int result = STATE_UNKNOWN; time_t conntime; setlocale (LC_ALL, ""); -- cgit v1.2.3