Date: Thu, 27 Aug 2009 15:24:26 +0000 (UTC) From: Doug Barton <dougb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r196589 - head/etc Message-ID: <200908271524.n7RFOQr9099837@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dougb Date: Thu Aug 27 15:24:26 2009 New Revision: 196589 URL: http://svn.freebsd.org/changeset/base/196589 Log: 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. Noticed by: Dimitry Andric <dimitry@andric.com> Modified: head/etc/network.subr Modified: head/etc/network.subr ============================================================================== --- head/etc/network.subr Thu Aug 27 13:18:59 2009 (r196588) +++ head/etc/network.subr Thu Aug 27 15:24:26 2009 (r196589) @@ -879,8 +879,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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200908271524.n7RFOQr9099837>