diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | lib/Vyatta/Interface.pm | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 78e49b0..1f3ba41 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +vyatta-cfg (0.16.33) unstable; urgency=low + + * Rename in0 to ifb0 + + -- Stephen Hemminger <stephen.hemminger@vyatta.com> Thu, 15 Apr 2010 13:14:11 -0700 + vyatta-cfg (0.16.32) unstable; urgency=low * fix for bug 2176. diff --git a/lib/Vyatta/Interface.pm b/lib/Vyatta/Interface.pm index 3eb810b..e45e123 100755 --- a/lib/Vyatta/Interface.pm +++ b/lib/Vyatta/Interface.pm @@ -76,7 +76,7 @@ my %net_prefix = ( '^peth[\d]+$' => { path => 'pseudo-ethernet', vif => 'vif', }, '^wlan[\d]+$' => { path => 'wireless', vif => 'vif' }, - '^in[\d]+$' => { path => 'input' }, + '^ifb[\d]+$' => { path => 'input' }, ); # get list of interface types (only used in usage function) |