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_mysql.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_mysql.c')
-rw-r--r-- | plugins/check_mysql.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c index f55630b..30dce9d 100644 --- a/plugins/check_mysql.c +++ b/plugins/check_mysql.c | |||
@@ -16,7 +16,7 @@ | |||
16 | 16 | ||
17 | const char *progname = "check_mysql"; | 17 | const char *progname = "check_mysql"; |
18 | const char *revision = "$Revision$"; | 18 | const char *revision = "$Revision$"; |
19 | const char *copyright = "1999-2002"; | 19 | const char *copyright = "1999-2004"; |
20 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 20 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; |
21 | 21 | ||
22 | #define SLAVERESULTSIZE 40 | 22 | #define SLAVERESULTSIZE 40 |
@@ -24,6 +24,7 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net"; | |||
24 | #include "common.h" | 24 | #include "common.h" |
25 | #include "utils.h" | 25 | #include "utils.h" |
26 | #include "netutils.h" | 26 | #include "netutils.h" |
27 | |||
27 | #include <mysql/mysql.h> | 28 | #include <mysql/mysql.h> |
28 | #include <mysql/errmsg.h> | 29 | #include <mysql/errmsg.h> |
29 | 30 | ||
@@ -48,6 +49,9 @@ main (int argc, char **argv) | |||
48 | MYSQL mysql; | 49 | MYSQL mysql; |
49 | MYSQL_RES *res; | 50 | MYSQL_RES *res; |
50 | MYSQL_ROW row; | 51 | MYSQL_ROW row; |
52 | |||
53 | /* should be status */ | ||
54 | |||
51 | char *result = NULL; | 55 | char *result = NULL; |
52 | char slaveresult[SLAVERESULTSIZE]; | 56 | char slaveresult[SLAVERESULTSIZE]; |
53 | 57 | ||