X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;ds=sidebyside;f=settings.c;h=a8c73ac5cb689dcb279953a667ba01b435b9e175;hb=5904545cc18289541702da284b00490cb25a753e;hp=9d2e4140d86ceb39019952be82bb4af88273c79d;hpb=2bf868835591b39f17a157b1511b1e2f4b6e77da;p=PuTTY.git diff --git a/settings.c b/settings.c index 9d2e4140..a8c73ac5 100644 --- a/settings.c +++ b/settings.c @@ -781,7 +781,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);