From owner-svn-src-all@freebsd.org Sun May 1 19:39:25 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16A03B29CA2; Sun, 1 May 2016 19:39:25 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC9A11F39; Sun, 1 May 2016 19:39:24 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u41JdOHi075626; Sun, 1 May 2016 19:39:24 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u41JdNIU075622; Sun, 1 May 2016 19:39:23 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201605011939.u41JdNIU075622@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Sun, 1 May 2016 19:39:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298897 - in head/libexec: ftpd rtld-elf X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 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, 01 May 2016 19:39:25 -0000 Author: pfg Date: Sun May 1 19:39:23 2016 New Revision: 298897 URL: https://svnweb.freebsd.org/changeset/base/298897 Log: libexec: minor spelling fixes in comments. No functional change. Modified: head/libexec/ftpd/ftpd.c head/libexec/ftpd/popen.c head/libexec/rtld-elf/malloc.c head/libexec/rtld-elf/rtld.c Modified: head/libexec/ftpd/ftpd.c ============================================================================== --- head/libexec/ftpd/ftpd.c Sun May 1 19:37:33 2016 (r298896) +++ head/libexec/ftpd/ftpd.c Sun May 1 19:39:23 2016 (r298897) @@ -2048,7 +2048,7 @@ pdata_err: } while (0) /* - * Tranfer the contents of "instr" to "outstr" peer using the appropriate + * Transfer the contents of "instr" to "outstr" peer using the appropriate * encapsulation of the data subject to Mode, Structure, and Type. * * NB: Form isn't handled. Modified: head/libexec/ftpd/popen.c ============================================================================== --- head/libexec/ftpd/popen.c Sun May 1 19:37:33 2016 (r298896) +++ head/libexec/ftpd/popen.c Sun May 1 19:39:23 2016 (r298897) @@ -60,7 +60,7 @@ __FBSDID("$FreeBSD$"); #define MAXGLOBARGS 1000 /* - * Special version of popen which avoids call to shell. This ensures noone + * Special version of popen which avoids call to shell. This ensures no one * may create a pipe to a hidden program as a side effect of a list or dir * command. */ Modified: head/libexec/rtld-elf/malloc.c ============================================================================== --- head/libexec/rtld-elf/malloc.c Sun May 1 19:37:33 2016 (r298896) +++ head/libexec/rtld-elf/malloc.c Sun May 1 19:39:23 2016 (r298897) @@ -328,7 +328,7 @@ free(cp) * old malloc man page, it realloc's an already freed block. Usually * this is the last block it freed; occasionally it might be farther * back. We have to search all the free lists for the block in order - * to determine its bucket: 1st we make one pass thru the lists + * to determine its bucket: 1st we make one pass through the lists * checking only the first block in each; if that fails we search * ``realloc_srchlen'' blocks in each list for a match (the variable * is extern so the caller can modify it). If that fails we just copy Modified: head/libexec/rtld-elf/rtld.c ============================================================================== --- head/libexec/rtld-elf/rtld.c Sun May 1 19:37:33 2016 (r298896) +++ head/libexec/rtld-elf/rtld.c Sun May 1 19:39:23 2016 (r298897) @@ -822,7 +822,7 @@ origin_subst_one(Obj_Entry *obj, char *r kw_len = strlen(kw); /* - * First, count the number of the keyword occurences, to + * First, count the number of the keyword occurrences, to * preallocate the final string. */ for (p = real, subst_count = 0;; p = p1 + kw_len, subst_count++) {