From noreply at github.com Sun May 19 11:37:59 2024 From: noreply at github.com (Dimitry Andric) Date: Sun, 19 May 2024 15:37:59 +0000 (UTC) Subject: [Midnightbsd-cvs] [MidnightBSD/src] c21d23: Fix snprintf truncation in telnet Message-ID: Branch: refs/heads/stable/3.1 Home: https://github.com/MidnightBSD/src Commit: c21d2301386d23e787e61756f3cf9704b94ae9f9 https://github.com/MidnightBSD/src/commit/c21d2301386d23e787e61756f3cf9704b94ae9f9 Author: Dimitry Andric Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M contrib/telnet/telnet/telnet.c Log Message: ----------- Fix snprintf truncation in telnet Building telnet with clang 18 results in the following warning: contrib/telnet/telnet/telnet.c:231:5: error: 'snprintf' will always be truncated; specified size is 10, but format string expands to at least 11 [-Werror,-Wformat-truncation] 231 | snprintf(temp2, sizeof(temp2), "%c%c%c%c....%c%c", IAC, SB, TELOPT_COMPORT, | ^ The temp2 buffer is 10 chars, while the format string also consists of 10 chars. Therefore, snprintf(3) will truncate the last character, 'SE' (end sub negotation) in this case. Bump the buffer to 11 chars to avoid truncation. MFC after: 3 days (cherry picked from commit c794d188222a4d3414233ff9630d47eedc090fbe) To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun May 19 11:42:44 2024 From: noreply at github.com (Gordon Bergling) Date: Sun, 19 May 2024 08:42:44 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 221270: muge(4): Fix a typo in a source code comment Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 221270fd6bed5e80e8ce7c7d82b322e27b531969 https://github.com/MidnightBSD/src/commit/221270fd6bed5e80e8ce7c7d82b322e27b531969 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/dev/usb/net/if_muge.c Log Message: ----------- muge(4): Fix a typo in a source code comment - s/addres/address/ (cherry picked from commit 046fe202e76623988ac612b20047940b86dd373f) Commit: 30ee588c226871bc110bffcb403cdcac89887a19 https://github.com/MidnightBSD/src/commit/30ee588c226871bc110bffcb403cdcac89887a19 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/dev/oce/oce_mbox.c Log Message: ----------- oce(4): Fix a typo in a source code comment - s/addres/address/ (cherry picked from commit e991acd5d0f60fe3c57acb452003c551194a758b) Commit: 3422c0cf1cb1bbd233b1f116a7f797b696ffa366 https://github.com/MidnightBSD/src/commit/3422c0cf1cb1bbd233b1f116a7f797b696ffa366 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/kern/uipc_domain.c Log Message: ----------- uipc_domain: Fix a typo in a source code comment - s/cant/can't/ (cherry picked from commit 9576fc16ca6cb360e085735dfaf891ae6d7f6181) Commit: 366e052486f27ed0372c61ec9ee9ba264e794588 https://github.com/MidnightBSD/src/commit/366e052486f27ed0372c61ec9ee9ba264e794588 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/geom/geom_subr.c Log Message: ----------- geom(4): Fix a typo in a source code comment - s/cant/can't/ (cherry picked from commit c0a01ee83d3d4749ac9e7e46d8d47b991c65537f) Commit: fd28a460517b5b861456bca89112a5b256f1341c https://github.com/MidnightBSD/src/commit/fd28a460517b5b861456bca89112a5b256f1341c Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/arm/freescale/vybrid/vf_sai.c Log Message: ----------- freescale: Fix a typo in a source code comment - s/cant/can't/ (cherry picked from commit 26f6c148bce2d6734a07ea621616724f1e76e4fd) Commit: 6149215b905784baf04fa72c413633a6eee06954 https://github.com/MidnightBSD/src/commit/6149215b905784baf04fa72c413633a6eee06954 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/arm/arm/gic.c Log Message: ----------- arm: Fix a typo in a KASSERT message - s/resoure/resource/ (cherry picked from commit 178cf4b9db4bb6726e845b10923788cf4e7a5ef0) Commit: fa5a3ded0b681c34ad4e6acdc48d7c270f6f8d07 https://github.com/MidnightBSD/src/commit/fa5a3ded0b681c34ad4e6acdc48d7c270f6f8d07 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M tools/tools/mwl/mwlstats/mwlstats.c Log Message: ----------- mwlstats: Fix a typo in an error message - s/the the/the/ (cherry picked from commit e1e149ad8ada85267e981cb9d4c6b48d4ce9e1f4) Commit: 36ccbd23a24750fe93d7781e644d2605b4e3b102 https://github.com/MidnightBSD/src/commit/36ccbd23a24750fe93d7781e644d2605b4e3b102 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/sys/link_elf.h M sys/sys/types.h Log Message: ----------- sys: Remove two double words in source code comments - s/of of/of/ (cherry picked from commit cf5d9c41246c0583b28d5c1101c6f334e38a67e9) Compare: https://github.com/MidnightBSD/src/compare/8c03ee3020cc...36ccbd23a247 To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun May 19 11:43:01 2024 From: noreply at github.com (Gordon Bergling) Date: Sun, 19 May 2024 08:43:01 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] c63960: vmm(4): Fix a typo in a kernel message Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: c63960fb65a2febf6ba558e00469f09dd9a4a987 https://github.com/MidnightBSD/src/commit/c63960fb65a2febf6ba558e00469f09dd9a4a987 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/amd64/vmm/amd/ivrs_drv.c Log Message: ----------- vmm(4): Fix a typo in a kernel message - s/cant/can't/ (cherry picked from commit 8b5c5cae92d5b44f03636540a787fd6e994ce816) Commit: 5300c0959159d16c4b1ab456a6ba2cdc6a0e9018 https://github.com/MidnightBSD/src/commit/5300c0959159d16c4b1ab456a6ba2cdc6a0e9018 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/dev/wtap/if_wtap.c M sys/dev/wtap/wtap_hal/hal.c Log Message: ----------- wtap: Fix typos in kernel messages - s/cant/can't/ (cherry picked from commit 026520a5f2d2ec01e19494c37b87448df86ef21a) Compare: https://github.com/MidnightBSD/src/compare/36ccbd23a247...5300c0959159 To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun May 19 11:43:09 2024 From: noreply at github.com (Gordon Bergling) Date: Sun, 19 May 2024 08:43:09 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 45223d: ipfw: Fix a typo in a source code comment Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 45223d3c40b0daa3fb63ee29ed35007f56e2c0a4 https://github.com/MidnightBSD/src/commit/45223d3c40b0daa3fb63ee29ed35007f56e2c0a4 Author: Gordon Bergling Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/netinet/ip_fw.h Log Message: ----------- ipfw: Fix a typo in a source code comment - s/defaul/default/ (cherry picked from commit 78e4dbc34559f7b18ea85cafd6663db4e6d54af9) To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun May 19 11:48:47 2024 From: noreply at github.com (Lucas Holt) Date: Sun, 19 May 2024 08:48:47 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] Message-ID: Branch: refs/heads/stable/3.2 Home: https://github.com/MidnightBSD/src To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun May 19 11:49:45 2024 From: noreply at github.com (Lucas Holt) Date: Sun, 19 May 2024 08:49:45 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 27c98c: update stable branch Message-ID: Branch: refs/heads/stable/3.2 Home: https://github.com/MidnightBSD/src Commit: 27c98c7a2d1ef6494dd7778cf8bc982a4b1df9d9 https://github.com/MidnightBSD/src/commit/27c98c7a2d1ef6494dd7778cf8bc982a4b1df9d9 Author: Lucas Holt Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M UPDATING Log Message: ----------- update stable branch To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun May 19 11:50:38 2024 From: noreply at github.com (Lucas Holt) Date: Sun, 19 May 2024 08:50:38 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 4f1172: document that we made a 3.2 branch Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 4f117285636a9bfd1ebdc702d68354a6b1caee82 https://github.com/MidnightBSD/src/commit/4f117285636a9bfd1ebdc702d68354a6b1caee82 Author: Lucas Holt Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M UPDATING Log Message: ----------- document that we made a 3.2 branch To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun May 19 11:51:33 2024 From: noreply at github.com (Lucas Holt) Date: Sun, 19 May 2024 08:51:33 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 8fd0ea: bump version to 4.0 in current Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 8fd0eaeb784b80eb03cf1a5affdc8a42c79c63a0 https://github.com/MidnightBSD/src/commit/8fd0eaeb784b80eb03cf1a5affdc8a42c79c63a0 Author: Lucas Holt Date: 2024-05-19 (Sun, 19 May 2024) Changed paths: M sys/conf/newvers.sh M sys/sys/param.h Log Message: ----------- bump version to 4.0 in current To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun May 19 16:49:08 2024 From: noreply at github.com (Lucas Holt) Date: Sun, 19 May 2024 13:49:08 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] Message-ID: Branch: refs/tags/3.1.5 Home: https://github.com/MidnightBSD/src To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications