diff options
author | Ermal Luçi <eri@pfsense.org> | 2009-02-14 06:40:14 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2009-02-14 06:40:14 +0000 |
commit | 0dc702f340076f6464181b819f5393882ed56748 (patch) | |
tree | 2408216a41d3774e6c852807a5e6d6935564c4b2 /etc/inc/interfaces.inc | |
parent | 118dc8e57ce2731db31134b2a238da7d2951d478 (diff) | |
download | pfsense-0dc702f340076f6464181b819f5393882ed56748.zip pfsense-0dc702f340076f6464181b819f5393882ed56748.tar.gz |
Fix delaying of creating composite interfaces like bridge/gre/gif. This fixes the problems reported http://forum.pfsense.org/index.php/topic,13735.0.html.
Diffstat (limited to 'etc/inc/interfaces.inc')
-rw-r--r-- | etc/inc/interfaces.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc index 652d527..6ebaf4b 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -501,7 +501,7 @@ function interfaces_configure() { $bridge_list = array(); foreach($iflist as $if => $ifname) { - $realif = $config['interfaces'][$if]; + $realif = $config['interfaces'][$if]['if']; if(is_array($realif['pppoe']) && isset($realif['pppoe']['pppoe-reset-type'])) setup_pppoe_reset_file($if, true); else |