summaryrefslogtreecommitdiffstats
path: root/etc/inc/filter.inc
diff options
context:
space:
mode:
authorDaniel Becker <razzfazz@gmail.com>2013-07-07 11:22:18 -0700
committerDaniel Becker <razzfazz@gmail.com>2013-07-07 11:22:18 -0700
commit14e9b0526f4d41616994d57b3484c2fa0bf8183f (patch)
tree1f0c2b11fc69a653d70cdbfa94affbd21b08ea3d /etc/inc/filter.inc
parentba581f076acc3068c37bd86c97656bf53b29781b (diff)
downloadpfsense-14e9b0526f4d41616994d57b3484c2fa0bf8183f.zip
pfsense-14e9b0526f4d41616994d57b3484c2fa0bf8183f.tar.gz
Fix typo in filter.inc. Fixes #3028.
Due to the typo, FilterIfList never got a 'track6-interface' entry, which in turn prevented the DHCP6-related pass rules from being generated for the LAN interface.
Diffstat (limited to 'etc/inc/filter.inc')
-rw-r--r--etc/inc/filter.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
index 090c868..da59a6a 100644
--- a/etc/inc/filter.inc
+++ b/etc/inc/filter.inc
@@ -867,7 +867,7 @@ function filter_generate_optcfg_array() {
if(!is_ipaddrv6($oc['ipaddrv6']) && !empty($oc['ipaddrv6']))
$oic['type6'] = $oc['ipaddrv6'];
if (!empty($oc['track6-interface']))
- $oc['track6-interface'] = $oc['track6-interface'];
+ $oic['track6-interface'] = $oc['track6-interface'];
$oic['sn'] = get_interface_subnet($if);
$oic['snv6'] = get_interface_subnetv6($if);
$oic['mtu'] = empty($oc['mtu']) ? 1500 : $oc['mtu'];
OpenPOWER on IntegriCloud