diff options
author | Jan Wagner <waja@cyconet.org> | 2014-01-21 11:08:07 +0100 |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2014-01-21 11:08:07 +0100 |
commit | 96f45b6698809a73a38ae1b648782bc967f3bbe1 (patch) | |
tree | 323966e5ca958156fec89d451ccb48dab6a89574 /plugins/check_mysql_query.c | |
parent | fc01a54e933aadec5059bf56e79fa7aca08af6d2 (diff) | |
download | monitoring-plugins-96f45b6698809a73a38ae1b648782bc967f3bbe1.tar.gz |
Revert renaming value
As suggested by sreinhardt in 045d38a6 over there in nagios-plugins
Diffstat (limited to 'plugins/check_mysql_query.c')
-rw-r--r-- | plugins/check_mysql_query.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/check_mysql_query.c b/plugins/check_mysql_query.c index 73611279..ff823cc8 100644 --- a/plugins/check_mysql_query.c +++ b/plugins/check_mysql_query.c @@ -55,7 +55,7 @@ void print_usage (void); char *sql_query = NULL; int verbose = 0; -thresholds *thlds = NULL; +thresholds *my_thresholds = NULL; int @@ -143,7 +143,7 @@ main (int argc, char **argv) if (verbose >= 3) printf("mysql result: %f\n", value); - status = get_status(value, thlds); + status = get_status(value, my_thresholds); if (status == STATE_OK) { printf("QUERY %s: ", _("OK")); @@ -154,8 +154,8 @@ main (int argc, char **argv) } printf(_("'%s' returned %f | %s"), sql_query, value, fperfdata("result", value, "", - thlds->warning?TRUE:FALSE, thlds->warning?thlds->warning->end:0, - thlds->critical?TRUE:FALSE, thlds->critical?thlds->critical->end:0, + my_thresholds->warning?TRUE:FALSE, my_thresholds->warning?my_thresholds->warning->end:0, + my_thresholds->critical?TRUE:FALSE, my_thresholds->critical?my_thresholds->critical->end:0, FALSE, 0, FALSE, 0) ); @@ -254,7 +254,7 @@ process_arguments (int argc, char **argv) c = optind; - set_thresholds(&thlds, warning, critical); + set_thresholds(&my_thresholds, warning, critical); return validate_arguments (); } |