Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Jun 2014 07:39:29 +0000 (UTC)
From:      Hiroki Sato <hrs@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r267636 - head/etc
Message-ID:  <201406190739.s5J7dT79062508@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}\ }`
 		;;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406190739.s5J7dT79062508>