diff options
Diffstat (limited to 'plugins')
-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 7361127..ff823cc 100644 --- a/plugins/check_mysql_query.c +++ b/plugins/check_mysql_query.c | |||
@@ -55,7 +55,7 @@ void print_usage (void); | |||
55 | 55 | ||
56 | char *sql_query = NULL; | 56 | char *sql_query = NULL; |
57 | int verbose = 0; | 57 | int verbose = 0; |
58 | thresholds *thlds = NULL; | 58 | thresholds *my_thresholds = NULL; |
59 | 59 | ||
60 | 60 | ||
61 | int | 61 | int |
@@ -143,7 +143,7 @@ main (int argc, char **argv) | |||
143 | if (verbose >= 3) | 143 | if (verbose >= 3) |
144 | printf("mysql result: %f\n", value); | 144 | printf("mysql result: %f\n", value); |
145 | 145 | ||
146 | status = get_status(value, thlds); | 146 | status = get_status(value, my_thresholds); |
147 | 147 | ||
148 | if (status == STATE_OK) { | 148 | if (status == STATE_OK) { |
149 | printf("QUERY %s: ", _("OK")); | 149 | printf("QUERY %s: ", _("OK")); |
@@ -154,8 +154,8 @@ main (int argc, char **argv) | |||
154 | } | 154 | } |
155 | printf(_("'%s' returned %f | %s"), sql_query, value, | 155 | printf(_("'%s' returned %f | %s"), sql_query, value, |
156 | fperfdata("result", value, "", | 156 | fperfdata("result", value, "", |
157 | thlds->warning?TRUE:FALSE, thlds->warning?thlds->warning->end:0, | 157 | my_thresholds->warning?TRUE:FALSE, my_thresholds->warning?my_thresholds->warning->end:0, |
158 | thlds->critical?TRUE:FALSE, thlds->critical?thlds->critical->end:0, | 158 | my_thresholds->critical?TRUE:FALSE, my_thresholds->critical?my_thresholds->critical->end:0, |
159 | FALSE, 0, | 159 | FALSE, 0, |
160 | FALSE, 0) | 160 | FALSE, 0) |
161 | ); | 161 | ); |
@@ -254,7 +254,7 @@ process_arguments (int argc, char **argv) | |||
254 | 254 | ||
255 | c = optind; | 255 | c = optind; |
256 | 256 | ||
257 | set_thresholds(&thlds, warning, critical); | 257 | set_thresholds(&my_thresholds, warning, critical); |
258 | 258 | ||
259 | return validate_arguments (); | 259 | return validate_arguments (); |
260 | } | 260 | } |