From 6bb26b30935b575ae7e0e4e5b230ab21d151ea5e Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 22 Aug 2001 20:23:49 +0000 Subject: [PATCH] Oops - fix that fix :-/ git-svn-id: svn://svn.tartarus.org/sgt/putty@1197 cda61777-01e9-0310-a592-d414129be87e --- ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh.c b/ssh.c index c75c8fe9..a6390196 100644 --- a/ssh.c +++ b/ssh.c @@ -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; -- 2.11.0