]> git.pld-linux.org Git - packages/glibc.git/blame - glibc-cmsg-time64-fix.patch
- added cmsg-time64-fix patch (unbreaks some network tools incl. ping on archs with...
[packages/glibc.git] / glibc-cmsg-time64-fix.patch
CommitLineData
79825541
JB
1https://sourceware.org/bugzilla/show_bug.cgi?id=28350
2--- glibc-2.34/sysdeps/unix/sysv/linux/convert_scm_timestamps.c.orig 2021-08-02 03:33:43.000000000 +0200
3+++ glibc-2.34/sysdeps/unix/sysv/linux/convert_scm_timestamps.c 2021-12-14 06:27:02.255687500 +0100
4@@ -55,7 +55,10 @@ __convert_scm_timestamps (struct msghdr
5 cmsg = CMSG_NXTHDR (msg, cmsg))
6 {
7 if (cmsg->cmsg_level != SOL_SOCKET)
8- continue;
9+ {
10+ last = cmsg;
11+ continue;
12+ }
13
14 switch (cmsg->cmsg_type)
15 {
This page took 0.039207 seconds and 4 git commands to generate.