From eb4504ccf60eb26f383d06a173332c37044ee70e Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 7 Sep 2002 12:27:13 +0000 Subject: [PATCH] Increase length limit on SSH1_MSG_DEBUG; 70 chars is short enough to lose vital information in some existing servers' messages. git-svn-id: svn://svn.tartarus.org/sgt/putty@1932 cda61777-01e9-0310-a592-d414129be87e --- ssh.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ssh.c b/ssh.c index 19c93df4..d998d08f 100644 --- a/ssh.c +++ b/ssh.c @@ -804,11 +804,11 @@ static int ssh1_rdpkt(unsigned char **data, int *datalen) if (pktin.type == SSH1_MSG_DEBUG) { /* log debug message */ - char buf[80]; + char buf[512]; int stringlen = GET_32BIT(pktin.body); - strcpy(buf, "Remote: "); - if (stringlen > 70) - stringlen = 70; + strcpy(buf, "Remote debug message: "); + if (stringlen > 480) + stringlen = 480; memcpy(buf + 8, pktin.body + 4, stringlen); buf[8 + stringlen] = '\0'; logevent(buf); -- 2.11.0