mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-21 22:28:37 -05:00
Add an explicit message about lack of support for PASSWD_CHANGEREQ in a
half-hearted attempt to flush out any uses of it. [originally from svn r5070]
This commit is contained in:
parent
2d1f699293
commit
4e550f96b2
4
ssh.c
4
ssh.c
@ -6119,6 +6119,10 @@ static void do_ssh2_authconn(Ssh ssh, unsigned char *in, int inlen,
|
|||||||
*/
|
*/
|
||||||
if (!s->gotit)
|
if (!s->gotit)
|
||||||
s->curr_prompt = 0;
|
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) {
|
} else if (pktin->type != SSH2_MSG_USERAUTH_FAILURE) {
|
||||||
bombout(("Strange packet received during authentication: type %d",
|
bombout(("Strange packet received during authentication: type %d",
|
||||||
pktin->type));
|
pktin->type));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user