freebsd-src/contrib/telnet
Dimitry Andric 4f3aa626f6 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 c794d18822)
2023-12-24 15:01:29 +01:00
..
arpa telnet: remove 3rd clause from Berkeley copyrights 2019-08-15 13:27:57 +00:00
libtelnet Revert 359399: telnet -fno-common bits 2020-03-28 17:57:36 +00:00
telnet Fix snprintf truncation in telnet 2023-12-24 15:01:29 +01:00
telnetd Fix CVE-2020-10188 2022-09-30 06:28:17 -07:00