mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 01:48:00 +00:00
Don't try SSH-1 by default.
This commit is contained in:
parent
efb6aa4642
commit
5da1d58325
@ -778,7 +778,8 @@ void load_open_settings(void *sesskey, Conf *conf)
|
||||
}
|
||||
gppi(sesskey, "RekeyTime", 60, conf, CONF_ssh_rekey_time);
|
||||
gpps(sesskey, "RekeyBytes", "1G", conf, CONF_ssh_rekey_data);
|
||||
gppi(sesskey, "SshProt", 2, conf, CONF_sshprot);
|
||||
/* SSH-2 only by default */
|
||||
gppi(sesskey, "SshProt", 3, conf, CONF_sshprot);
|
||||
gpps(sesskey, "LogHost", "", conf, CONF_loghost);
|
||||
gppi(sesskey, "SSH2DES", 0, conf, CONF_ssh2_des_cbc);
|
||||
gppi(sesskey, "SshNoAuth", 0, conf, CONF_ssh_no_userauth);
|
||||
|
Loading…
Reference in New Issue
Block a user