]> sourceware.org Git - glibc.git/commitdiff
network: Fix missing bits from {recv,send}{m}msg standard com,pliance
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 26 May 2016 14:11:33 +0000 (11:11 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 26 May 2016 14:11:33 +0000 (11:11 -0300)
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.

ChangeLog
nptl/Makefile
sysdeps/unix/sysv/linux/hppa/Versions
sysdeps/unix/sysv/linux/i386/Versions

index c0b975e094194126abdcdee7ee53af1b26986601..ecedf6f6e65ffc9c228ced899e17c365a2c03237 100644 (file)
--- 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
index 42409289bdc8d42084fd8e681146292f1028695b..eaa6f7f2832027bc7b2dabded143e4c5a9160aa9 100644 (file)
@@ -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
 
index 895696ebf8e90b0e96ca622d041bd256c1996782..f0af95ef461f63ca70ef801d0d2d6f3b83cb7425 100644 (file)
@@ -36,6 +36,6 @@ libc {
     fanotify_mark;
   }
   GLIBC_2.24 {
-    recvms; sendmsg;
+    recvmsg; sendmsg;
   }
 }
index 55d12777ef217e9324ab3cd3bdbaad3dd60d43fc..64d503b62d01c8a756927c9dd14ec8f6ae2585d5 100644 (file)
@@ -46,7 +46,7 @@ libc {
     fallocate64;
   }
   GLIBC_2.24 {
-    recvms; sendmsg;
+    recvmsg; sendmsg;
   }
   GLIBC_PRIVATE {
     __modify_ldt;
This page took 0.313907 seconds and 5 git commands to generate.