From 7ff3999e491d74a4bd6a32a664c9cb6e87c90f7f Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 22 Aug 2001 20:23:49 +0000 Subject: [PATCH] Oops - fix that fix :-/ [originally from svn r1197] --- 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;