1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-04 04:52:47 -05:00

We failed to ignore SSH_MSG_IGNORE :-)

[originally from svn r219]
This commit is contained in:
Simon Tatham
1999-09-10 15:35:26 +00:00
parent 8665bc6746
commit b3efa01293
2 changed files with 6 additions and 0 deletions

2
ssh.c
View File

@ -156,6 +156,8 @@ static void ssh_gotdata(unsigned char *data, int datalen) {
if (pktin.type == 36) { /* SSH_MSG_DEBUG */
/* FIXME: log it */
} else if (pktin.type == 32) { /* SSH_MSG_IGNORE */
/* do nothing */;
} else
ssh_protocol(NULL, 0, 1);
}