diff options
author | Ermal Luçi <eri@pfsense.org> | 2009-06-08 22:14:34 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2009-06-08 22:14:34 +0000 |
commit | e1c449c0362c89b1d7c4ab2a1a860e88938cfcde (patch) | |
tree | 86cae093b6bad3bcbd9f13c3042b78da7fe31ae4 /etc/inc/upgrade_config.inc | |
parent | 83bdca55920ca6ab3d848f0993d57a1f9b85098f (diff) | |
download | pfsense-e1c449c0362c89b1d7c4ab2a1a860e88938cfcde.zip pfsense-e1c449c0362c89b1d7c4ab2a1a860e88938cfcde.tar.gz |
Revert "Do not use tags for vlan interface names since there might be same vlan tags on different parent interfaces and this will break configs and will hide the reason it does not work. Thanks-to: smos@"
This reverts commit 83bdca55920ca6ab3d848f0993d57a1f9b85098f.
Diffstat (limited to 'etc/inc/upgrade_config.inc')
-rw-r--r-- | etc/inc/upgrade_config.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/upgrade_config.inc b/etc/inc/upgrade_config.inc index 48b94d5..2e00622 100644 --- a/etc/inc/upgrade_config.inc +++ b/etc/inc/upgrade_config.inc @@ -772,7 +772,7 @@ function upgrade_044_to_045() { global $config; if (is_array($config['vlans']['vlan']) && count($config['vlans']['vlan'])) { foreach ($config['vlans']['vlan'] as $id => &$vlan) - $vlan['vlanif'] = "vlan{$id}"; + $vlan['vlanif'] = "vlan{$vlan['tag']}"; } } |