svn commit: r196589 - head/etc

Doug Barton dougb at FreeBSD.org
Thu Aug 27 15:24:27 UTC 2009


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 at 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
 


More information about the svn-src-all mailing list