From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 344 invoked by alias); 2 Sep 2013 10:15:27 -0000 Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org Received: (qmail 322 invoked by uid 89); 2 Sep 2013 10:15:27 -0000 Received: from gerolde.archlinux.org (HELO gerolde.archlinux.org) (66.211.214.132) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 02 Sep 2013 10:15:27 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,KHOP_THREADED autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: gerolde.archlinux.org Received: from [10.1.1.2] (122-148-115-77.static.dsl.dodo.com.au [122.148.115.77]) by gerolde.archlinux.org (Postfix) with ESMTPSA id 87B6090252; Mon, 2 Sep 2013 06:15:22 -0400 (EDT) Message-ID: <52246536.4090202@archlinux.org> Date: Mon, 02 Sep 2013 10:15:00 -0000 From: Allan McRae User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130806 Thunderbird/17.0.8 MIME-Version: 1.0 To: =?UTF-8?B?T25kxZllaiBCw61sa2E=?= CC: "Joseph S. Myers" , libc-alpha@sourceware.org, libc-ports@sourceware.org Subject: Re: [PATCH 4/9] Fix typos. References: <20130813082629.GA27180@domone.kolej.mff.cuni.cz> <20130818164943.GA7418@domone> <20130818220954.GA20381@domone> <20130902093742.GE11034@domone.kolej.mff.cuni.cz> In-Reply-To: <20130902093742.GE11034@domone.kolej.mff.cuni.cz> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-SW-Source: 2013-09/txt/msg00005.txt.bz2 On 02/09/13 19:37, Ondřej Bílka wrote: > Here are next typos. A couple of additions: > diff --git a/ports/sysdeps/powerpc/powerpc32/405/memset.S b/ports/sysdeps/powerpc/powerpc32/405/memset.S > index b73dba8..e0813f2 100644 > --- a/ports/sysdeps/powerpc/powerpc32/405/memset.S > +++ b/ports/sysdeps/powerpc/powerpc32/405/memset.S > @@ -27,11 +27,11 @@ > r12:temp return address > > Save return address in r12 > - If destinationn is unaligned and count is greater tha 255 bytes > + If destination is unaligned and count is greater tha 255 bytes tha -> than > set 0-3 bytes to make destination aligned > If count is greater tha 255 bytes and setting zero to memory > - use dbcz to set memeory when we can > - otherwsie do the follwoing > + use dbcz to set memory when we can > + otherwise do the following > If 16 or more words to set we use 16 word copy loop. > Finaly we set 0-15 extra bytes with string store. */ > > diff --git a/ports/sysdeps/powerpc/powerpc32/476/memset.S b/ports/sysdeps/powerpc/powerpc32/476/memset.S > index 48c21d6..fd2210c 100644 > --- a/ports/sysdeps/powerpc/powerpc32/476/memset.S > +++ b/ports/sysdeps/powerpc/powerpc32/476/memset.S > @@ -27,11 +27,11 @@ > r12:temp return address > > Save return address in r12 > - If destinationn is unaligned and count is greater tha 255 bytes > + If destination is unaligned and count is greater tha 255 bytes tha -> than > set 0-3 bytes to make destination aligned > If count is greater tha 255 bytes and setting zero to memory > - use dbcz to set memeory when we can > - otherwsie do the follwoing > + use dbcz to set memory when we can > + otherwise do the following > If 16 or more words to set we use 16 word copy loop. > Finaly we set 0-15 extra bytes with string store. */ > > diff --git a/nis/nss_compat/compat-grp.c b/nis/nss_compat/compat-grp.c > index 72a9a7a..239ad90 100644 > --- a/nis/nss_compat/compat-grp.c > +++ b/nis/nss_compat/compat-grp.c > @@ -254,7 +254,7 @@ getgrent_next_nss (struct group *result, ent_t *ent, char *buffer, > return NSS_STATUS_SUCCESS; > } > > -/* This function handle the +group entrys in /etc/group */ > +/* This function handle the +group entries in /etc/group */ handle -> handles > static enum nss_status > getgrnam_plusgroup (const char *name, struct group *result, ent_t *ent, > char *buffer, size_t buflen, int *errnop) > diff --git a/nis/nss_compat/compat-pwd.c b/nis/nss_compat/compat-pwd.c > index f934fb2..275ae53 100644 > --- a/nis/nss_compat/compat-pwd.c > +++ b/nis/nss_compat/compat-pwd.c > @@ -478,7 +478,7 @@ getpwent_next_nss (struct passwd *result, ent_t *ent, char *buffer, > return NSS_STATUS_SUCCESS; > } > > -/* This function handle the +user entrys in /etc/passwd */ > +/* This function handle the +user entries in /etc/passwd */ handle -> handles > static enum nss_status > getpwnam_plususer (const char *name, struct passwd *result, ent_t *ent, > char *buffer, size_t buflen, int *errnop) Allan