This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.24-539-g12f1ae0


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  12f1ae05c0b4e3cc58f23d9bb72ab291681ea8a8 (commit)
      from  cfee7d9cf403a1f801784c0d6f1d72994911d9d8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=12f1ae05c0b4e3cc58f23d9bb72ab291681ea8a8

commit 12f1ae05c0b4e3cc58f23d9bb72ab291681ea8a8
Author: Dmitry V. Levin <ldv@altlinux.org>
Date:   Tue Dec 27 20:13:35 2016 +0000

    Fix typos in the spelling of "implementation"
    
    Apply the following spelling fix:
    $ git grep -El 'implemetn?ation' |
      xargs sed -ri 's/implemetn?ation/implementation/g'
    
    [BZ #19514]
    * resolv/res_send.c: Fix typo in comment.
    * sysdeps/i386/i386-mcount.S: Likewise.
    * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
    * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
    * sysdeps/sparc/sparc-mcount.S: Likewise.

diff --git a/ChangeLog b/ChangeLog
index 9791f66..4965a8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2016-12-27  Dmitry V. Levin  <ldv@altlinux.org>
+
+	[BZ #19514]
+	* resolv/res_send.c: Fix typo in comment.
+	* sysdeps/i386/i386-mcount.S: Likewise.
+	* sysdeps/s390/s390-32/s390-mcount.S: Likewise.
+	* sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
+	* sysdeps/sparc/sparc-mcount.S: Likewise.
+
 2016-12-27  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	* sysdeps/powerpc/fpu/s_fmaxf.S: Remove file.
@@ -53816,7 +53825,7 @@
 	(ulp): New function.
 	(check_float_internal): Use ULPDIFF.
 	(cpow_test): Disable failing test.
-	(check_ulp): Test ulp() implemetnation.
+	(check_ulp): Test ulp() implementation.
 	(main): Call check_ulp before starting tests.
 
 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
diff --git a/resolv/res_send.c b/resolv/res_send.c
index e96d5d4..cc2a7de 100644
--- a/resolv/res_send.c
+++ b/resolv/res_send.c
@@ -579,7 +579,7 @@ close_and_return_error (res_state statp, int *resplen2)
    Please note that for TCP there is no way to disable sending both
    queries, unlike UDP, which honours RES_SNGLKUP and RES_SNGLKUPREOP
    and sends the queries serially and waits for the result after each
-   sent query.  This implemetnation should be corrected to honour these
+   sent query.  This implementation should be corrected to honour these
    options.
 
    Please also note that for TCP we send both queries over the same
diff --git a/sysdeps/i386/i386-mcount.S b/sysdeps/i386/i386-mcount.S
index 94fb95e..9a53050 100644
--- a/sysdeps/i386/i386-mcount.S
+++ b/sysdeps/i386/i386-mcount.S
@@ -1,4 +1,4 @@
-/* i386-specific implemetation of profiling support.
+/* i386-specific implementation of profiling support.
    Copyright (C) 1997-2016 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
diff --git a/sysdeps/s390/s390-32/s390-mcount.S b/sysdeps/s390/s390-32/s390-mcount.S
index a27f434..fe6932f 100644
--- a/sysdeps/s390/s390-32/s390-mcount.S
+++ b/sysdeps/s390/s390-32/s390-mcount.S
@@ -1,4 +1,4 @@
-/* S/390-specific implemetation of profiling support.
+/* S/390-specific implementation of profiling support.
    Copyright (C) 2000-2016 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com)
diff --git a/sysdeps/s390/s390-64/s390x-mcount.S b/sysdeps/s390/s390-64/s390x-mcount.S
index cb67ddb..9f61116 100644
--- a/sysdeps/s390/s390-64/s390x-mcount.S
+++ b/sysdeps/s390/s390-64/s390x-mcount.S
@@ -1,4 +1,4 @@
-/* 64 bit S/390-specific implemetation of profiling support.
+/* 64 bit S/390-specific implementation of profiling support.
    Copyright (C) 2001-2016 Free Software Foundation, Inc.
    Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com)
    This file is part of the GNU C Library.
diff --git a/sysdeps/sparc/sparc-mcount.S b/sysdeps/sparc/sparc-mcount.S
index 0afb948..4b0e91a 100644
--- a/sysdeps/sparc/sparc-mcount.S
+++ b/sysdeps/sparc/sparc-mcount.S
@@ -1,4 +1,4 @@
-/* sparc-specific implemetation of profiling support.
+/* sparc-specific implementation of profiling support.
    Copyright (C) 2008-2016 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by David S. Miller <davem@davemloft.net>, 2008.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                           |   11 ++++++++++-
 resolv/res_send.c                   |    2 +-
 sysdeps/i386/i386-mcount.S          |    2 +-
 sysdeps/s390/s390-32/s390-mcount.S  |    2 +-
 sysdeps/s390/s390-64/s390x-mcount.S |    2 +-
 sysdeps/sparc/sparc-mcount.S        |    2 +-
 6 files changed, 15 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]