diff options
Diffstat (limited to 'plugins/check_smtp.c')
-rw-r--r-- | plugins/check_smtp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index ab1b950..b6c60c2 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c | |||
@@ -218,11 +218,12 @@ main (int argc, char **argv) | |||
218 | microsec = deltime (tv); | 218 | microsec = deltime (tv); |
219 | elapsed_time = (double)microsec / 1.0e6; | 219 | elapsed_time = (double)microsec / 1.0e6; |
220 | 220 | ||
221 | if (result == STATE_OK) | 221 | if (result == STATE_OK) { |
222 | if (check_critical_time && elapsed_time > (double) critical_time) | 222 | if (check_critical_time && elapsed_time > (double) critical_time) |
223 | result = STATE_CRITICAL; | 223 | result = STATE_CRITICAL; |
224 | else if (check_warning_time && elapsed_time > (double) warning_time) | 224 | else if (check_warning_time && elapsed_time > (double) warning_time) |
225 | result = STATE_WARNING; | 225 | result = STATE_WARNING; |
226 | } | ||
226 | 227 | ||
227 | printf (_("SMTP %s - %.3f sec. response time%s%s|%s\n"), | 228 | printf (_("SMTP %s - %.3f sec. response time%s%s|%s\n"), |
228 | state_text (result), elapsed_time, | 229 | state_text (result), elapsed_time, |