MFC 196589:

In the loop through the list of interfaces in network6_interface_setup()
rtsol_interface gets reset to "yes" each time through the loop, but
rtsol_available does not. If a user has lo0 first in their list of
interfaces rtsol_available will get set to "no" the first time through
the loop and subsequent interfaces will not get rtsol'ed when they should.

Therefore change the conditional for the is_wired() test to _interface.

Approved by:	re (kib)
This commit is contained in:
Doug Barton 2009-08-27 17:53:25 +00:00
parent ac63e409c2
commit 4bff593a8c

View File

@ -872,8 +872,8 @@ network6_interface_setup()
# Wireless NIC cards are virtualized through the wlan interface
if ! is_wired_interface ${i}; then
case "${i}" in
wlan*) rtsol_available=yes ;;
*) rtsol_available=no ;;
wlan*) rtsol_interface=yes ;;
*) rtsol_interface=no ;;
esac
fi