1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Piers Finlayson reports that "DigiSSH_2.0" chokes (in a new and exciting

manner) on rekeys.  Add it to the list.

[originally from svn r6067]
This commit is contained in:
Ben Harris 2005-07-05 21:15:23 +00:00
parent 3b4e643588
commit 7d49271ada

3
ssh.c
View File

@ -2245,7 +2245,8 @@ static void ssh_detect_bugs(Ssh ssh, char *vstring)
if (ssh->cfg.sshbug_rekey2 == FORCE_ON || if (ssh->cfg.sshbug_rekey2 == FORCE_ON ||
(ssh->cfg.sshbug_rekey2 == AUTO && (ssh->cfg.sshbug_rekey2 == AUTO &&
(wc_match("OpenSSH_2.[0-4]*", imp) || (wc_match("DigiSSH_2.0", imp) ||
wc_match("OpenSSH_2.[0-4]*", imp) ||
wc_match("OpenSSH_2.5.[0-3]*", imp) || wc_match("OpenSSH_2.5.[0-3]*", imp) ||
wc_match("Sun_SSH_1.0", imp) || wc_match("Sun_SSH_1.0", imp) ||
wc_match("Sun_SSH_1.0.1", imp)))) { wc_match("Sun_SSH_1.0.1", imp)))) {