diff options
author | Ermal <eri@pfsense.org> | 2013-08-16 19:45:46 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2013-08-16 19:49:03 +0000 |
commit | 17921b7e8dd8e1113a391ed5f570d31ab8c88154 (patch) | |
tree | 9fb8ef551693070649bc271f44b35684ffe65599 /etc/inc | |
parent | 62580df45fc6f1c91857b502a2a4ff1176092459 (diff) | |
download | pfsense-17921b7e8dd8e1113a391ed5f570d31ab8c88154.zip pfsense-17921b7e8dd8e1113a391ed5f570d31ab8c88154.tar.gz |
Ooops fix this to add only th einterface
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 3dd13f9..a1c86ad 100644 --- a/etc/inc/gwlb.inc +++ b/etc/inc/gwlb.inc @@ -170,7 +170,7 @@ EOD; $gwifip = find_interface_ipv6($gateway['interface'], true); } if (is_linklocal($gateway['monitor']) && !strstr($gateway['monitor'], '%')) - $gateway['monitor'] .= "{$gateway['monitor']}%{$gateway['interface']}"; + $gateway['monitor'] .= "%{$gateway['interface']}"; if (!is_ipaddrv6($gwifip)) continue; //Skip this target } else |