summaryrefslogtreecommitdiffstats
path: root/plugins/check_mysql.c
diff options
context:
space:
mode:
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 f55630b..30dce9d 100644
--- a/plugins/check_mysql.c
+++ b/plugins/check_mysql.c
@@ -16,7 +16,7 @@
16 16
17const char *progname = "check_mysql"; 17const char *progname = "check_mysql";
18const char *revision = "$Revision$"; 18const char *revision = "$Revision$";
19const char *copyright = "1999-2002"; 19const char *copyright = "1999-2004";
20const char *email = "nagiosplug-devel@lists.sourceforge.net"; 20const 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