From owner-svn-src-head@FreeBSD.ORG Sun Jun 2 23:23:30 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 84E91B9F; Sun, 2 Jun 2013 23:23:30 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 769C81CD0; Sun, 2 Jun 2013 23:23:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r52NNUIA096194; Sun, 2 Jun 2013 23:23:30 GMT (envelope-from dteske@svn.freebsd.org) Received: (from dteske@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r52NNUCl096193; Sun, 2 Jun 2013 23:23:30 GMT (envelope-from dteske@svn.freebsd.org) Message-Id: <201306022323.r52NNUCl096193@svn.freebsd.org> From: Devin Teske Date: Sun, 2 Jun 2013 23:23:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r251277 - head/usr.sbin/bsdconfig/startup X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Jun 2013 23:23:30 -0000 Author: dteske Date: Sun Jun 2 23:23:29 2013 New Revision: 251277 URL: http://svnweb.freebsd.org/changeset/base/251277 Log: Fix a typo. In this case, the typo caused the f_noyes() invocation to display a global instead of the passed-argument; however since the global always has the same value as the passed argument, it made no difference in the realtime operation. Modified: head/usr.sbin/bsdconfig/startup/rcdelete Modified: head/usr.sbin/bsdconfig/startup/rcdelete ============================================================================== --- head/usr.sbin/bsdconfig/startup/rcdelete Sun Jun 2 23:20:46 2013 (r251276) +++ head/usr.sbin/bsdconfig/startup/rcdelete Sun Jun 2 23:23:29 2013 (r251277) @@ -253,7 +253,7 @@ dialog_menu_confirm_delete() # If asked to delete only one variable, simply ask and return if [ $# -eq 1 ]; then - f_noyes "$msg_are_you_sure_you_want_to_delete" "$delete_vars" + f_noyes "$msg_are_you_sure_you_want_to_delete" "$1" return $? fi # Not reached unless requested to delete multiple variables