From owner-svn-src-all@FreeBSD.ORG Sun Nov 20 21:48:50 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93598106566B; Sun, 20 Nov 2011 21:48:50 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 829AA8FC0C; Sun, 20 Nov 2011 21:48:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id pAKLmoDE010792; Sun, 20 Nov 2011 21:48:50 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pAKLmohx010789; Sun, 20 Nov 2011 21:48:50 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <201111202148.pAKLmohx010789@svn.freebsd.org> From: Jilles Tjoelker Date: Sun, 20 Nov 2011 21:48:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r227773 - in head: bin/sh tools/regression/bin/sh/parameters X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Nov 2011 21:48:50 -0000 Author: jilles Date: Sun Nov 20 21:48:50 2011 New Revision: 227773 URL: http://svn.freebsd.org/changeset/base/227773 Log: sh: Allow unsetting OPTIND. Note that only assigning the decimal value 1 resets getopts, as before. Added: head/tools/regression/bin/sh/parameters/optind1.0 (contents, props changed) Modified: head/bin/sh/options.c Modified: head/bin/sh/options.c ============================================================================== --- head/bin/sh/options.c Sun Nov 20 21:47:25 2011 (r227772) +++ head/bin/sh/options.c Sun Nov 20 21:48:50 2011 (r227773) @@ -401,9 +401,10 @@ setcmd(int argc, char **argv) void getoptsreset(const char *value) { - if (number(value) == 1) { + while (*value == '0') + value++; + if (strcmp(value, "1") == 0) shellparam.reset = 1; - } } /* Added: head/tools/regression/bin/sh/parameters/optind1.0 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/tools/regression/bin/sh/parameters/optind1.0 Sun Nov 20 21:48:50 2011 (r227773) @@ -0,0 +1,3 @@ +# $FreeBSD$ + +unset OPTIND && [ -z "$OPTIND" ]