summaryrefslogtreecommitdiffstats
path: root/plugins/check_mysql.c
diff options
context:
space:
mode:
authorLorenz Kästle <lorenz.kaestle@netways.de>2024-08-28 17:20:31 (GMT)
committerLorenz Kästle <lorenz.kaestle@netways.de>2024-08-28 17:20:31 (GMT)
commit4f7ee057865e75d0eb95874b2404eb21bb5d508f (patch)
tree320ac82dc68799b18497e79e2912c2161075986b /plugins/check_mysql.c
parent584cca3a96845d7720c34358340c98c31c765fc4 (diff)
downloadmonitoring-plugins-4f7ee057865e75d0eb95874b2404eb21bb5d508f.tar.gz
check_mysql: Label some booleans correctlyrefs/pull/2015/head
Diffstat (limited to 'plugins/check_mysql.c')
-rw-r--r--plugins/check_mysql.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c
index a2a5e32..15ec04c 100644
--- a/plugins/check_mysql.c
+++ b/plugins/check_mysql.c
@@ -59,8 +59,8 @@ 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; 62bool check_slave = false;
63int ignore_auth = 0; 63bool ignore_auth = false;
64int verbose = 0; 64int verbose = 0;
65 65
66static double warning_time = 0; 66static double warning_time = 0;
@@ -456,10 +456,10 @@ process_arguments (int argc, char **argv)
456 db_port = atoi (optarg); 456 db_port = atoi (optarg);
457 break; 457 break;
458 case 'S': 458 case 'S':
459 check_slave = 1; /* check-slave */ 459 check_slave = true; /* check-slave */
460 break; 460 break;
461 case 'n': 461 case 'n':
462 ignore_auth = 1; /* ignore-auth */ 462 ignore_auth = true; /* ignore-auth */
463 break; 463 break;
464 case 'w': 464 case 'w':
465 warning = optarg; 465 warning = optarg;