From owner-svn-src-head@FreeBSD.ORG Sat Sep 22 03:11:35 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D812D106564A; Sat, 22 Sep 2012 03:11:35 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C242B8FC08; Sat, 22 Sep 2012 03:11:35 +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 q8M3BZWk071126; Sat, 22 Sep 2012 03:11:35 GMT (envelope-from dteske@svn.freebsd.org) Received: (from dteske@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8M3BZn5071121; Sat, 22 Sep 2012 03:11:35 GMT (envelope-from dteske@svn.freebsd.org) Message-Id: <201209220311.q8M3BZn5071121@svn.freebsd.org> From: Devin Teske Date: Sat, 22 Sep 2012 03:11:35 +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: r240797 - in head/usr.sbin/bsdconfig: include share startup/share X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Sat, 22 Sep 2012 03:11:36 -0000 Author: dteske Date: Sat Sep 22 03:11:35 2012 New Revision: 240797 URL: http://svn.freebsd.org/changeset/base/240797 Log: Spelling and whitespace corrections. Reviewed by: adrian (co-mentor) Approved by: adrian (co-mentor) Modified: head/usr.sbin/bsdconfig/include/messages.subr head/usr.sbin/bsdconfig/share/common.subr head/usr.sbin/bsdconfig/share/sysrc.subr head/usr.sbin/bsdconfig/startup/share/rcconf.subr Modified: head/usr.sbin/bsdconfig/include/messages.subr ============================================================================== --- head/usr.sbin/bsdconfig/include/messages.subr Fri Sep 21 22:07:46 2012 (r240796) +++ head/usr.sbin/bsdconfig/include/messages.subr Sat Sep 22 03:11:35 2012 (r240797) @@ -44,7 +44,7 @@ msg_no_such_file_or_directory="%s: %s: N msg_no_username="No username provided!" msg_not_found="not found" msg_ok="OK" -msg_permission_denied="%s: %s: permission denied" +msg_permission_denied="%s: %s: Permission denied" msg_please_enter_password="Please enter your password for sudo(8):" msg_please_enter_username_password="Please enter a username and password for sudo(8):" msg_previous_syntax_errors="%s: Not overwriting \`%s' due to previous syntax errors" Modified: head/usr.sbin/bsdconfig/share/common.subr ============================================================================== --- head/usr.sbin/bsdconfig/share/common.subr Fri Sep 21 22:07:46 2012 (r240796) +++ head/usr.sbin/bsdconfig/share/common.subr Sat Sep 22 03:11:35 2012 (r240797) @@ -63,12 +63,12 @@ f_dprintf() # f_err() { - printf "$@" >&2 + printf "$@" >&2 } # f_quietly $command [ $arguments ... ] # -# run a command quietly (quell any output to stdout or stderr) +# Run a command quietly (quell any output to stdout or stderr) # f_quietly() { @@ -76,7 +76,7 @@ f_quietly() } # f_have $anything ... -# +# # A wrapper to the `type' built-in. Returns true if argument is a valid shell # built-in, keyword, or externally-tracked binary, otherwise false. # Modified: head/usr.sbin/bsdconfig/share/sysrc.subr ============================================================================== --- head/usr.sbin/bsdconfig/share/sysrc.subr Fri Sep 21 22:07:46 2012 (r240796) +++ head/usr.sbin/bsdconfig/share/sysrc.subr Sat Sep 22 03:11:35 2012 (r240797) @@ -17,7 +17,7 @@ if [ ! "$_SYSRC_SUBR" ]; then _SYSRC_SUB # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -# DAMAGES (INLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY @@ -166,7 +166,7 @@ f_sysrc_get() # # If the query was for `rc_conf_files' AND after calling - # source_rc_confs the vaue has not changed, then we should + # source_rc_confs the value has not changed, then we should # restore the value to the one inherited from RC_DEFAULTS # before performing the final query (preventing us from # returning what was set via RC_CONFS when the intent was Modified: head/usr.sbin/bsdconfig/startup/share/rcconf.subr ============================================================================== --- head/usr.sbin/bsdconfig/startup/share/rcconf.subr Fri Sep 21 22:07:46 2012 (r240796) +++ head/usr.sbin/bsdconfig/startup/share/rcconf.subr Sat Sep 22 03:11:35 2012 (r240797) @@ -113,8 +113,8 @@ f_startup_rcconf_map() # # Calculate digest used to determine if the on-disk global persistant - # cache file (containg this digest on the first line) is valid and can - # be used to quickly populate the cache value for immediate return. + # cache file (containing this digest on the first line) is valid and + # can be used to quickly populate the cache value for immediate return. # local rc_defaults_digest rc_defaults_digest=$( md5 < "$RC_DEFAULTS" )