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.23-386-g2f0dc39


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  2f0dc39029ae08cbed2f65d21501b3e329895e7d (commit)
      from  222c2d7f4357d66073176f3beec67af40f0486c7 (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=2f0dc39029ae08cbed2f65d21501b3e329895e7d

commit 2f0dc39029ae08cbed2f65d21501b3e329895e7d
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu May 26 11:11:33 2016 -0300

    network: Fix missing bits from {recv,send}{m}msg standard com,pliance
    
    This patch fixes wrong/missing bits from the Fix {recv,send}{m}msg
    standard compliance (BZ#16919) patches:
    
      * nptl/Makefile sets CFLAGS-oldrecvfrom.c, but there's no such file as
        oldrecvfrom.c.  It should be oldsendmsg.c as defined by ChangeLog.
    
      * sysdeps/unix/sysv/linux/hppa/Versions and
        sysdeps/unix/sysv/linux/i386/Versions list a symbol recvms instead of
        recvmsg at version GLIBC_2.24.
    
    	* nptl/Makefile (CFLAGS-oldrecvfrom.c): Remove rule.
    	(CFLAGS-oldsendmsg.c): Add rule.
    	* sysdeps/unix/sysv/linux/hppa/Versions [libc] (GLIBC_2.24):
    	Correct recvmsg symbol name.
    	* sysdeps/unix/sysv/linux/i386/Versions [libc] (GLIBC_2.24):
    	Likewise.

diff --git a/ChangeLog b/ChangeLog
index c0b975e..ecedf6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2016-05-26  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+	* nptl/Makefile (CFLAGS-oldrecvfrom.c): Remove rule.
+	(CFLAGS-oldsendmsg.c): Add rule.
+	* sysdeps/unix/sysv/linux/hppa/Versions [libc] (GLIBC_2.24):
+	Correct recvmsg symbol name.
+	* sysdeps/unix/sysv/linux/i386/Versions [libc] (GLIBC_2.24):
+	Likewise.
+
 2016-05-25  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	* sysdeps/unix/sysv/linux/Makefile
diff --git a/nptl/Makefile b/nptl/Makefile
index 4240928..eaa6f7f 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -208,7 +208,7 @@ CFLAGS-sendto.c = -fexceptions -fasynchronous-unwind-tables
 CFLAGS-connect.c = -fexceptions -fasynchronous-unwind-tables
 CFLAGS-recvfrom.c = -fexceptions -fasynchronous-unwind-tables
 CFLAGS-oldrecvmsg.c = -fexceptions -fasynchronous-unwind-tables
-CFLAGS-oldrecvfrom.c = -fexceptions -fasynchronous-unwind-tables
+CFLAGS-oldsendmsg.c = -fexceptions -fasynchronous-unwind-tables
 
 CFLAGS-pt-system.c = -fexceptions
 
diff --git a/sysdeps/unix/sysv/linux/hppa/Versions b/sysdeps/unix/sysv/linux/hppa/Versions
index 895696e..f0af95e 100644
--- a/sysdeps/unix/sysv/linux/hppa/Versions
+++ b/sysdeps/unix/sysv/linux/hppa/Versions
@@ -36,6 +36,6 @@ libc {
     fanotify_mark;
   }
   GLIBC_2.24 {
-    recvms; sendmsg;
+    recvmsg; sendmsg;
   }
 }
diff --git a/sysdeps/unix/sysv/linux/i386/Versions b/sysdeps/unix/sysv/linux/i386/Versions
index 55d1277..64d503b 100644
--- a/sysdeps/unix/sysv/linux/i386/Versions
+++ b/sysdeps/unix/sysv/linux/i386/Versions
@@ -46,7 +46,7 @@ libc {
     fallocate64;
   }
   GLIBC_2.24 {
-    recvms; sendmsg;
+    recvmsg; sendmsg;
   }
   GLIBC_PRIVATE {
     __modify_ldt;

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

Summary of changes:
 ChangeLog                             |    9 +++++++++
 nptl/Makefile                         |    2 +-
 sysdeps/unix/sysv/linux/hppa/Versions |    2 +-
 sysdeps/unix/sysv/linux/i386/Versions |    2 +-
 4 files changed, 12 insertions(+), 3 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]