summaryrefslogtreecommitdiffstats
path: root/plugins/check_time.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_time.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_time.c')
-rw-r--r--plugins/check_time.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/check_time.c b/plugins/check_time.c
index ee6ff43..8381fb2 100644
--- a/plugins/check_time.c
+++ b/plugins/check_time.c
@@ -18,15 +18,15 @@
18 18
19******************************************************************************/ 19******************************************************************************/
20 20
21#include "common.h"
22#include "netutils.h"
23#include "utils.h"
24
25const char *progname = "check_time"; 21const char *progname = "check_time";
26const char *revision = "$Revision$"; 22const char *revision = "$Revision$";
27const char *copyright = "1999-2003"; 23const char *copyright = "1999-2004";
28const char *email = "nagiosplug-devel@lists.sourceforge.net"; 24const char *email = "nagiosplug-devel@lists.sourceforge.net";
29 25
26#include "common.h"
27#include "netutils.h"
28#include "utils.h"
29
30enum { 30enum {
31 TIME_PORT = 37 31 TIME_PORT = 37
32}; 32};
@@ -55,7 +55,7 @@ int
55main (int argc, char **argv) 55main (int argc, char **argv)
56{ 56{
57 int sd; 57 int sd;
58 int result; 58 int result = STATE_UNKNOWN;
59 time_t conntime; 59 time_t conntime;
60 60
61 setlocale (LC_ALL, ""); 61 setlocale (LC_ALL, "");