diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 00:55:28 (GMT) |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 00:55:28 (GMT) |
commit | 016d33230eb4fffd7e1f5644ce4901cb4d01f4e3 (patch) | |
tree | 1a6f29dcfd937bccffb66467127613b660d55365 /plugins/check_nt.c | |
parent | 3f05eb7fcb71942c90fa7d5796c3d18ed62443cf (diff) | |
download | monitoring-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_nt.c')
-rw-r--r-- | plugins/check_nt.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/check_nt.c b/plugins/check_nt.c index efd7cde..f142675 100644 --- a/plugins/check_nt.c +++ b/plugins/check_nt.c | |||
@@ -30,6 +30,11 @@ | |||
30 | * | 30 | * |
31 | *****************************************************************************/ | 31 | *****************************************************************************/ |
32 | 32 | ||
33 | const char *progname = "check_nt"; | ||
34 | const char *revision = "$Revision$"; | ||
35 | const char *copyright = "2003-2004"; | ||
36 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | ||
37 | |||
33 | #include "common.h" | 38 | #include "common.h" |
34 | #include "netutils.h" | 39 | #include "netutils.h" |
35 | #include "utils.h" | 40 | #include "utils.h" |
@@ -65,8 +70,6 @@ int check_critical_value=FALSE; | |||
65 | enum checkvars vars_to_check = CHECK_NONE; | 70 | enum checkvars vars_to_check = CHECK_NONE; |
66 | int show_all=FALSE; | 71 | int show_all=FALSE; |
67 | 72 | ||
68 | const char *progname = "check_nt"; | ||
69 | |||
70 | char recv_buffer[MAX_INPUT_BUFFER]; | 73 | char recv_buffer[MAX_INPUT_BUFFER]; |
71 | 74 | ||
72 | void fetch_data (const char* address, int port, const char* sendb); | 75 | void fetch_data (const char* address, int port, const char* sendb); |
@@ -77,6 +80,9 @@ void print_help(void); | |||
77 | void print_usage(void); | 80 | void print_usage(void); |
78 | 81 | ||
79 | int main(int argc, char **argv){ | 82 | int main(int argc, char **argv){ |
83 | |||
84 | /* should be int result = STATE_UNKNOWN; */ | ||
85 | |||
80 | int return_code = STATE_UNKNOWN; | 86 | int return_code = STATE_UNKNOWN; |
81 | char *send_buffer=NULL; | 87 | char *send_buffer=NULL; |
82 | char *output_message=NULL; | 88 | char *output_message=NULL; |