Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Feb 2013 08:11:37 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r247450 - stable/8/etc/rc.d
Message-ID:  <201302280811.r1S8BbnI008897@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Thu Feb 28 08:11:36 2013
New Revision: 247450
URL: http://svnweb.freebsd.org/changeset/base/247450

Log:
  When getting the MIB, remove largest suffix instead of smallest suffix of
  =.  This makes the following syntax work:
  
  	dev.hdaa.4.nid25_config=as=1,seq=15
  
  This is a direct commit to RELENG_8 as this file have been replaced in
  -HEAD.
  
  Submitted by:	Andreas Nilsson <andrnils gmail com>

Modified:
  stable/8/etc/rc.d/sysctl

Modified: stable/8/etc/rc.d/sysctl
==============================================================================
--- stable/8/etc/rc.d/sysctl	Thu Feb 28 08:06:43 2013	(r247449)
+++ stable/8/etc/rc.d/sysctl	Thu Feb 28 08:11:36 2013	(r247450)
@@ -26,7 +26,7 @@ parse_file()
 			\#*|'')
 				;;
 			*)
-				mib=${var%=*}
+				mib=${var%%=*}
 				val=${var#*=}
 
 				if current_value=`${SYSCTL} -n ${mib} 2>/dev/null`; then



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