From owner-svn-src-all@FreeBSD.ORG Fri Nov 11 22:27:09 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 D731B1065673; Fri, 11 Nov 2011 22:27:09 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BC62C8FC14; Fri, 11 Nov 2011 22:27:09 +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 pABMR9fv011440; Fri, 11 Nov 2011 22:27:09 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pABMR9QG011434; Fri, 11 Nov 2011 22:27:09 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201111112227.pABMR9QG011434@svn.freebsd.org> From: Eitan Adler Date: Fri, 11 Nov 2011 22:27:09 +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: r227458 - in head: secure/usr.bin/openssl/man sys/dev/isp sys/netinet/ipfw usr.bin/compress/doc usr.sbin/pkg_install/lib 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: Fri, 11 Nov 2011 22:27:10 -0000 Author: eadler (ports committer) Date: Fri Nov 11 22:27:09 2011 New Revision: 227458 URL: http://svn.freebsd.org/changeset/base/227458 Log: - add a missing "be" and "in" - fix other errors introduced when committing r226436 - add 'function' to a sentence where it makes sense Submitted by: delphij Submitted by: dougb Submitted by: jhb Approved by: dougb Approved by: jhb Modified: head/secure/usr.bin/openssl/man/ca.1 head/sys/dev/isp/DriverManual.txt head/sys/netinet/ipfw/dummynet.txt head/usr.bin/compress/doc/NOTES head/usr.sbin/pkg_install/lib/version.c Modified: head/secure/usr.bin/openssl/man/ca.1 ============================================================================== --- head/secure/usr.bin/openssl/man/ca.1 Fri Nov 11 22:24:16 2011 (r227457) +++ head/secure/usr.bin/openssl/man/ca.1 Fri Nov 11 22:27:09 2011 (r227458) @@ -205,7 +205,7 @@ section for information on the required .IP "\fB\-infiles\fR" 4 .IX Item "-infiles" if present this should be the last option, all subsequent arguments -are assumed to the names of files containing certificate requests. +are assumed to be the names of files containing certificate requests. .IP "\fB\-out filename\fR" 4 .IX Item "-out filename" the output file to output certificates to. The default is standard Modified: head/sys/dev/isp/DriverManual.txt ============================================================================== --- head/sys/dev/isp/DriverManual.txt Fri Nov 11 22:24:16 2011 (r227457) +++ head/sys/dev/isp/DriverManual.txt Fri Nov 11 22:27:09 2011 (r227458) @@ -327,7 +327,7 @@ here in clarifying some of this. A succesful execution of isp_init will lead to the driver 'registering' itself with this platform's SCSI subsystem. One assumed action for this -is the registry of a function the SCSI subsystem for this platform +is the registry of a function that the SCSI subsystem for this platform will call when it has a SCSI command to run. The platform specific module function that receives this will do whatever Modified: head/sys/netinet/ipfw/dummynet.txt ============================================================================== --- head/sys/netinet/ipfw/dummynet.txt Fri Nov 11 22:24:16 2011 (r227457) +++ head/sys/netinet/ipfw/dummynet.txt Fri Nov 11 22:27:09 2011 (r227458) @@ -325,7 +325,7 @@ we do the following: dummynet_task() =============== -The dummynet_task() is the main dummynet processing function and is +The dummynet_task() function is the main dummynet processing function and is called every tick. This function first calculate the new current time, then it checks if it is the time to wake up object from the system_heap comparing the current time and the key of the heap. Two types of object (really the Modified: head/usr.bin/compress/doc/NOTES ============================================================================== --- head/usr.bin/compress/doc/NOTES Fri Nov 11 22:24:16 2011 (r227457) +++ head/usr.bin/compress/doc/NOTES Fri Nov 11 22:27:09 2011 (r227458) @@ -51,7 +51,7 @@ comprehensive survey of an area which wi Until the dust clears, how you approach ideas which are patented depends on how paranoid you are of a legal onslaught. Arbitrary? Yes. But -the patent bar the CCPA (Court of Customs and Patent Appeals) +the patent bar of the CCPA (Court of Customs and Patent Appeals) thanks you for any uncertainty as they, at least, stand to gain from any trouble. Modified: head/usr.sbin/pkg_install/lib/version.c ============================================================================== --- head/usr.sbin/pkg_install/lib/version.c Fri Nov 11 22:24:16 2011 (r227457) +++ head/usr.sbin/pkg_install/lib/version.c Fri Nov 11 22:27:09 2011 (r227458) @@ -66,7 +66,7 @@ split_version(const char *pkgname, const if (pkgname == NULL) errx(2, "%s: Passed NULL pkgname.", __func__); - /* Look for the last '-' the pkgname */ + /* Look for the last '-' in the pkgname */ ch = strrchr(pkgname, '-'); /* Cheat if we are just passed a version, not a valid package name */ versionstr = ch ? ch + 1 : pkgname;