svn commit: r267636 - head/etc

Hiroki Sato hrs at FreeBSD.org
Thu Jun 19 07:39:29 UTC 2014


Author: hrs
Date: Thu Jun 19 07:39:28 2014
New Revision: 267636
URL: http://svnweb.freebsd.org/changeset/base/267636

Log:
  Fix address matching rule.
  
  Reported by:	jase

Modified:
  head/etc/network.subr

Modified: head/etc/network.subr
==============================================================================
--- head/etc/network.subr	Thu Jun 19 06:31:27 2014	(r267635)
+++ head/etc/network.subr	Thu Jun 19 07:39:28 2014	(r267636)
@@ -1058,7 +1058,7 @@ ifalias_af_common_handler()
 	# Process the last component if any.
 	if [ -n "$_tmpargs}" ]; then
 		case $_tmpargs in
-		${_af}\ *[0-9][a-f][A-F]-*)
+		${_af}\ *[0-9a-fA-F]-*)
 			ifalias_af_common_handler $_if $_af $_action \
 			`ifalias_expand_addr $_af $_action ${_tmpargs#${_af}\ }`
 		;;


More information about the svn-src-head mailing list