mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-16 02:27:32 -05:00
Make keyboard-interactive authentication configurable off. (This is
a stopgap until we get round to a proper authentications preference list.) [originally from svn r1426]
This commit is contained in:
2
ssh.c
2
ssh.c
@ -3910,7 +3910,7 @@ static void do_ssh2_authconn(unsigned char *in, int inlen, int ispkt)
|
||||
in_commasep_string("publickey", methods, methlen);
|
||||
can_passwd =
|
||||
in_commasep_string("password", methods, methlen);
|
||||
can_keyb_inter =
|
||||
can_keyb_inter = cfg.try_ki_auth &&
|
||||
in_commasep_string("keyboard-interactive", methods, methlen);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user