Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Sep 2014 22:59:40 +0000 (UTC)
From:      Devin Teske <dteske@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r270989 - head/usr.sbin/bsdconfig/share
Message-ID:  <201409022259.s82MxeVN017934@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dteske
Date: Tue Sep  2 22:59:40 2014
New Revision: 270989
URL: http://svnweb.freebsd.org/changeset/base/270989

Log:
  Fix regression introduced by SVN r270954. Correct way to reset getopts
  is to set OPTIND to 1, not unset it (which causes an error).
  
  Thanks to:	jilles

Modified:
  head/usr.sbin/bsdconfig/share/dialog.subr

Modified: head/usr.sbin/bsdconfig/share/dialog.subr
==============================================================================
--- head/usr.sbin/bsdconfig/share/dialog.subr	Tue Sep  2 22:01:14 2014	(r270988)
+++ head/usr.sbin/bsdconfig/share/dialog.subr	Tue Sep  2 22:59:40 2014	(r270989)
@@ -2116,7 +2116,7 @@ f_dialog_init()
 	f_dprintf "f_dialog_init: ARGV=[%s] GETOPTS_STDARGS=[%s]" \
 	          "$ARGV" "$GETOPTS_STDARGS"
 	SECURE=`set -- $ARGV
-		unset OPTIND
+		OPTIND=1
 		while getopts \
 			"$GETOPTS_STDARGS$GETOPTS_EXTRA$GETOPTS_ALLFLAGS" \
 		flag > /dev/null; do
@@ -2126,7 +2126,7 @@ f_dialog_init()
 		done
 	` # END-BACKTICK
 	USE_XDIALOG=`set -- $ARGV
-		unset OPTIND
+		OPTIND=1
 		while getopts \
 			"$GETOPTS_STDARGS$GETOPTS_EXTRA$GETOPTS_ALLFLAGS" \
 		flag > /dev/null; do



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