diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | plugins/check_mrtgtraf.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -35,6 +35,7 @@ This file documents the major additions and syntax changes between releases. | |||
35 | Fixed check_mysql* not using password set in my.cnf (#2531905 - Ben Timby) - Specify an empty password explicitly if you need to override it. | 35 | Fixed check_mysql* not using password set in my.cnf (#2531905 - Ben Timby) - Specify an empty password explicitly if you need to override it. |
36 | Fixed awk subst.in/subst script path error (#2722832 - Martin Foster) | 36 | Fixed awk subst.in/subst script path error (#2722832 - Martin Foster) |
37 | check_http: Add SSL/TLS hostname extension support (SNI) - (#1939022 - Joe Presbrey) | 37 | check_http: Add SSL/TLS hostname extension support (SNI) - (#1939022 - Joe Presbrey) |
38 | Fixed wrong perfdata label for output traffic in check_mrtgtraf (#2654308 - Gavin Williams) | ||
38 | 39 | ||
39 | 1.4.13 25th Sept 2008 | 40 | 1.4.13 25th Sept 2008 |
40 | Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen) | 41 | Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen) |
diff --git a/plugins/check_mrtgtraf.c b/plugins/check_mrtgtraf.c index 3232f1e..376a509 100644 --- a/plugins/check_mrtgtraf.c +++ b/plugins/check_mrtgtraf.c | |||
@@ -199,7 +199,7 @@ main (int argc, char **argv) | |||
199 | (int)incoming_warning_threshold, incoming_warning_threshold, | 199 | (int)incoming_warning_threshold, incoming_warning_threshold, |
200 | (int)incoming_critical_threshold, incoming_critical_threshold, | 200 | (int)incoming_critical_threshold, incoming_critical_threshold, |
201 | TRUE, 0, FALSE, 0), | 201 | TRUE, 0, FALSE, 0), |
202 | fperfdata("in", adjusted_outgoing_rate, outgoing_speed_rating, | 202 | fperfdata("out", adjusted_outgoing_rate, outgoing_speed_rating, |
203 | (int)outgoing_warning_threshold, outgoing_warning_threshold, | 203 | (int)outgoing_warning_threshold, outgoing_warning_threshold, |
204 | (int)outgoing_critical_threshold, outgoing_critical_threshold, | 204 | (int)outgoing_critical_threshold, outgoing_critical_threshold, |
205 | TRUE, 0, FALSE, 0)); | 205 | TRUE, 0, FALSE, 0)); |