diff options
author | Ermal <eri@pfsense.org> | 2011-04-06 14:59:30 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2011-04-06 14:59:30 +0000 |
commit | 4c613f84820a88c9b047e554b200accab5201f24 (patch) | |
tree | 572cf892a08c6e5177a8cdcb91f0edad1be5ef75 /etc/inc | |
parent | 19d9146637b36dd8cb3d42e300c44d4a8ccfe6d2 (diff) | |
download | pfsense-4c613f84820a88c9b047e554b200accab5201f24.zip pfsense-4c613f84820a88c9b047e554b200accab5201f24.tar.gz |
Correct error message for gateways to report down when the gateway is down and not high latency.
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/gwlb.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/gwlb.inc b/etc/inc/gwlb.inc index 50bd5c3..2a611f8 100644 --- a/etc/inc/gwlb.inc +++ b/etc/inc/gwlb.inc @@ -419,7 +419,7 @@ function return_gateway_groups_array() { $status = $gateways_status[$gwname]; $gwdown = false; if (stristr($status['status'], "down")) { - $msg = "MONITOR: {$gwname} has high latency, removing from routing group"; + $msg = "MONITOR: {$gwname} is down, removing from routing group"; $gwdown = true; } else if (stristr($status['status'], "loss") && strstr($group['trigger'], "loss")) { /* packet loss */ |