svn commit: r278933 - head/etc

Rui Paulo rpaulo at FreeBSD.org
Wed Feb 18 03:46:44 UTC 2015


Author: rpaulo
Date: Wed Feb 18 03:46:43 2015
New Revision: 278933
URL: https://svnweb.freebsd.org/changeset/base/278933

Log:
  Fix a typo in ipv6_down().
  
  We weren't skipping extraneous entries in the ifconfig | grep inet6 case.
  
  Submitted by:	Ashutosh Kumar AK0037447 at TechMahindra.com
  MFC after:	1 week

Modified:
  head/etc/network.subr

Modified: head/etc/network.subr
==============================================================================
--- head/etc/network.subr	Wed Feb 18 03:33:17 2015	(r278932)
+++ head/etc/network.subr	Wed Feb 18 03:46:43 2015	(r278933)
@@ -754,7 +754,7 @@ ipv6_down()
 	IFS="$_ifs"
 	for _inet6 in $inetList ; do
 		# get rid of extraneous line
-		case $_inet in
+		case $_inet6 in
 		inet6\ *)	;;
 		*)		continue ;;
 		esac


More information about the svn-src-head mailing list