From: simon Date: Wed, 22 Aug 2001 20:23:49 +0000 (+0000) Subject: Oops - fix that fix :-/ X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/6bb26b30935b575ae7e0e4e5b230ab21d151ea5e?ds=sidebyside Oops - fix that fix :-/ git-svn-id: svn://svn.tartarus.org/sgt/putty@1197 cda61777-01e9-0310-a592-d414129be87e --- 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;