summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2016-05-13 00:43:07 -0500
committerChris Buechler <cmb@pfsense.org>2016-05-13 00:44:28 -0500
commit3ded329e23980d52771cd7194ca31fe3481be21b (patch)
tree52970ab96c4610eb75086da99571d78c391cdd4d
parent857f3490862be98a23e0ae151ca2619f52cbf729 (diff)
downloadpfsense-3ded329e23980d52771cd7194ca31fe3481be21b.zip
pfsense-3ded329e23980d52771cd7194ca31fe3481be21b.tar.gz
Fix scope for IPv6 link local gateway IPs. Ticket #6353
-rw-r--r--src/etc/inc/gwlb.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/inc/gwlb.inc b/src/etc/inc/gwlb.inc
index 4070c9d..cbdceb5 100644
--- a/src/etc/inc/gwlb.inc
+++ b/src/etc/inc/gwlb.inc
@@ -261,7 +261,7 @@ function setup_gateways_monitor() {
} else if ($gateway['ipprotocol'] == "inet6") { // This is an IPv6 gateway...
if (is_linklocal($gateway['gateway']) &&
get_ll_scope($gateway['gateway']) == '') {
- $gateways_arr[$gwname]['gateway'] .= '%' . $gateway['interface'];
+ $gateway['gateway'] .= '%' . $gateway['interface'];
}
if (is_linklocal($gateway['monitor'])) {
OpenPOWER on IntegriCloud