summaryrefslogtreecommitdiffstats
path: root/plugins/check_mysql.c
diff options
context:
space:
mode:
authorLorenz Kästle <lorenz.kaestle@netways.de>2024-08-28 17:19:16 (GMT)
committerLorenz Kästle <lorenz.kaestle@netways.de>2024-08-28 17:19:16 (GMT)
commit584cca3a96845d7720c34358340c98c31c765fc4 (patch)
tree2a612cc8281d3d0d83a78749d26a65b5aeca5ebd /plugins/check_mysql.c
parent86053441b6a0b7d1a15330fdc23f0411356d1269 (diff)
downloadmonitoring-plugins-584cca3a96845d7720c34358340c98c31c765fc4.tar.gz
check_mysql: remove unused global variables
Diffstat (limited to 'plugins/check_mysql.c')
-rw-r--r--plugins/check_mysql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c
index 6a7daf1..a2a5e32 100644
--- a/plugins/check_mysql.c
+++ b/plugins/check_mysql.c
@@ -59,7 +59,7 @@ bool ssl = false;
59char *opt_file = NULL; 59char *opt_file = NULL;
60char *opt_group = NULL; 60char *opt_group = NULL;
61unsigned int db_port = MYSQL_PORT; 61unsigned int db_port = MYSQL_PORT;
62int check_slave = 0, warn_sec = 0, crit_sec = 0; 62int check_slave = 0;
63int ignore_auth = 0; 63int ignore_auth = 0;
64int verbose = 0; 64int verbose = 0;
65 65