From 96f45b6698809a73a38ae1b648782bc967f3bbe1 Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Tue, 21 Jan 2014 11:08:07 +0100 Subject: Revert renaming value As suggested by sreinhardt in 045d38a6 over there in nagios-plugins diff --git a/plugins/check_mysql_query.c b/plugins/check_mysql_query.c index 7361127..ff823cc 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 (); } -- cgit v0.10-9-g596f