svn commit: r222746 - head/etc

Hiroki Sato hrs at FreeBSD.org
Mon Jun 6 11:36:11 UTC 2011


Author: hrs
Date: Mon Jun  6 11:36:10 2011
New Revision: 222746
URL: http://svn.freebsd.org/changeset/base/222746

Log:
  Do not mark lo0 as IFDISABLED even if there is no $ifconfig_lo0_ipv6 line.

Modified:
  head/etc/network.subr

Modified: head/etc/network.subr
==============================================================================
--- head/etc/network.subr	Mon Jun  6 11:10:38 2011	(r222745)
+++ head/etc/network.subr	Mon Jun  6 11:36:10 2011	(r222746)
@@ -102,7 +102,7 @@ ifconfig_up()
 	if afexists inet6; then
 		if checkyesno ipv6_activate_all_interfaces; then
 			_ipv6_opts="-ifdisabled"
-		else
+		elif [ "$1" != "lo0" ]; then
 			_ipv6_opts="ifdisabled"
 		fi
 


More information about the svn-src-all mailing list