X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/b03dda398c060a458c65cc4d957eeef803599636..4c6e53e31e798a456f725120cfb9ffafcc00b7ef:/ssh.c diff --git a/ssh.c b/ssh.c index 63ea66a4..3af4f610 100644 --- a/ssh.c +++ b/ssh.c @@ -6119,6 +6119,10 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen, */ if (!s->gotit) s->curr_prompt = 0; + } else if (pktin->type == SSH2_MSG_USERAUTH_PASSWD_CHANGEREQ) { + /* FIXME: perhaps we should support this? */ + bombout(("PASSWD_CHANGEREQ not yet supported")); + crStopV; } else if (pktin->type != SSH2_MSG_USERAUTH_FAILURE) { bombout(("Strange packet received during authentication: type %d", pktin->type));