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
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"