aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_mysql.c
diff options
context:
space:
mode:
authorGravatar Benoit Mortier <opensides@users.sourceforge.net> 2004-12-03 00:55:28 +0000
committerGravatar Benoit Mortier <opensides@users.sourceforge.net> 2004-12-03 00:55:28 +0000
commit016d33230eb4fffd7e1f5644ce4901cb4d01f4e3 (patch)
tree1a6f29dcfd937bccffb66467127613b660d55365 /plugins/check_mysql.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_mysql.c')
-rw-r--r--plugins/check_mysql.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c
index f55630b2..30dce9d3 100644
--- a/plugins/check_mysql.c
+++ b/plugins/check_mysql.c
@@ -16,7 +16,7 @@
const char *progname = "check_mysql";
const char *revision = "$Revision$";
-const char *copyright = "1999-2002";
+const char *copyright = "1999-2004";
const char *email = "nagiosplug-devel@lists.sourceforge.net";
#define SLAVERESULTSIZE 40
@@ -24,6 +24,7 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net";
#include "common.h"
#include "utils.h"
#include "netutils.h"
+
#include <mysql/mysql.h>
#include <mysql/errmsg.h>
@@ -48,6 +49,9 @@ main (int argc, char **argv)
MYSQL mysql;
MYSQL_RES *res;
MYSQL_ROW row;
+
+ /* should be status */
+
char *result = NULL;
char slaveresult[SLAVERESULTSIZE];