From noreply at github.com Tue Oct 5 11:00:13 2021 From: noreply at github.com (Lucas Holt) Date: Tue, 05 Oct 2021 08:00:13 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] a3f91d: readelf: document that -u / --unwind is not ye... Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: a3f91d0da6a6648e6571d3dac7a7d7960ba38ec1 https://github.com/MidnightBSD/src/commit/a3f91d0da6a6648e6571d3dac7a7d7960ba38ec1 Author: Lucas Holt Date: 2021-10-05 (Tue, 05 Oct 2021) Changed paths: M contrib/elftoolchain/readelf/readelf.1 M contrib/elftoolchain/readelf/readelf.c Log Message: ----------- readelf: document that -u / --unwind is not yet implemented ELF tool chain readelf accepts -u / --unwind but just ignores the option. This was previously undocumented, which could be confusing for someone encountering `readelf -u` (in a script or GNU readelf example). Obtained from: FreeBSD From noreply at github.com Tue Oct 5 11:01:16 2021 From: noreply at github.com (Lucas Holt) Date: Tue, 05 Oct 2021 08:01:16 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] a1f121: contrib/tzdata: correct DST in Jordan and Samoa Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: a1f12135ea4cf43b6bccf6aafcbcb6564443526b https://github.com/MidnightBSD/src/commit/a1f12135ea4cf43b6bccf6aafcbcb6564443526b Author: Lucas Holt Date: 2021-10-05 (Tue, 05 Oct 2021) Changed paths: M contrib/tzdata/asia M contrib/tzdata/australasia Log Message: ----------- contrib/tzdata: correct DST in Jordan and Samoa From noreply at github.com Tue Oct 5 11:03:54 2021 From: noreply at github.com (Lucas Holt) Date: Tue, 05 Oct 2021 08:03:54 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 4ab955: Bring in the following bugfixes for ipfilter from ... Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 4ab9552b50dfbd4ad9e0601f7d7435d2b7573f5a https://github.com/MidnightBSD/src/commit/4ab9552b50dfbd4ad9e0601f7d7435d2b7573f5a Author: Lucas Holt Date: 2021-10-05 (Tue, 05 Oct 2021) Changed paths: M sys/contrib/ipfilter/netinet/ip_ftp_pxy.c M sys/contrib/ipfilter/netinet/ip_proxy.c Log Message: ----------- Bring in the following bugfixes for ipfilter from FreeBSD commit 4f2d5aa364c4e45727760f767be62ec4d81fdef7 (HEAD -> stable/11, origin/stable/11) Author: Cy Schubert Date: Fri Sep 24 17:00:20 2021 -0700 ipfilter: Print the correct TCP sequence index number TCP sequence numbers in the FTP proxy are maintained in a two dimensional array. The debug message prints the same seq[N] for both. Fix that. (cherry picked from commit df38343e71304169ebca0e4c4fa24b339982d7be) commit 0b72f4c82af8fe86cfc1034a16661430430f6f42 Author: Cy Schubert Date: Fri Sep 24 23:41:22 2021 -0700 ipfilter: Correct a comment Correct a comment's grammar and while at it clarify its meaining. (cherry picked from commit aa6cfcc820b438cec58fbe0af408d4457f8daf9d) commit 370a229ea9c647806f85e18e3a514612d9ae773f Author: Cy Schubert Date: Tue Sep 21 21:58:08 2021 -0700 ipfilter: Avoid a null if-then-else blocks When WITHOUT_INET6 is selected we generate a null if-then-else blocks due to incorrect placment of #if statments. Move the #if statements reducing unnecessary runtime comparisons WITHOUT_INET6. (cherry picked from commit 73db3b64f167972db3ee3f780cecb439b09492b1)