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

Oops - fix that fix :-/

[originally from svn r1197]
This commit is contained in:
Simon Tatham 2001-08-22 20:23:49 +00:00
parent a4d81b170e
commit 7ff3999e49

2
ssh.c
View File

@ -3497,7 +3497,7 @@ static void do_ssh2_authconn(unsigned char *in, int inlen, int ispkt)
* This is a further prompt in keyboard-interactive
* authentication. Do nothing.
*/
} else if (!pktin.type != SSH2_MSG_USERAUTH_FAILURE) {
} else if (pktin.type != SSH2_MSG_USERAUTH_FAILURE) {
bombout(("Strange packet received during authentication: type %d",
pktin.type));
crReturnV;