If the DISPLAY variable had exactly 44 bytes, the SE
byte (end sub negotiation) was silently truncated.
---
telnet/telnet.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/telnet/telnet.c b/telnet/telnet.c
index 297ae0e4..d5d13c14 100644
--- a/telnet/telnet.c
+++ b/telnet/telnet.c
@@ -1010,7 +1010,7 @@ suboption (void)
* protocol must remain unsevered. Check that DP fits in
* full within TEMP. Otherwise report buffer error.
*/
- if (strlen (dp) > sizeof (temp) - 4 - 2)
+ if (strlen ((char *) dp) >= sizeof (temp) - 4 - 2)
{
printf ("lm_will: not enough room in buffer\n");
break;
--
2.25.1