mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Make BugDropStart default to FORCE_OFF, not AUTO.
Since it's a manually-enabled bug compatibility mode, AUTO isn't one of the available UI options. This was causing Windows PuTTY to display a blank entry in the drop-down for "Discards data sent before its greeting". (It is possible that this unhelpful default has escaped into saved sessions of snapshot users, which would have the same effect, but since the actual using code can cope with it, I've not done anything to clean that up.)
This commit is contained in:
@ -1248,7 +1248,7 @@ void load_open_settings(settings_r *sesskey, Conf *conf)
|
||||
i = gppi_raw(sesskey, "BugOldGex2", 0); conf_set_int(conf, CONF_sshbug_oldgex2, 2-i);
|
||||
i = gppi_raw(sesskey, "BugWinadj", 0); conf_set_int(conf, CONF_sshbug_winadj, 2-i);
|
||||
i = gppi_raw(sesskey, "BugChanReq", 0); conf_set_int(conf, CONF_sshbug_chanreq, 2-i);
|
||||
i = gppi_raw(sesskey, "BugDropStart", 0); conf_set_int(conf, CONF_sshbug_dropstart, 2-i);
|
||||
i = gppi_raw(sesskey, "BugDropStart", 1); conf_set_int(conf, CONF_sshbug_dropstart, 2-i);
|
||||
conf_set_bool(conf, CONF_ssh_simple, false);
|
||||
gppb(sesskey, "StampUtmp", true, conf, CONF_stamp_utmp);
|
||||
gppb(sesskey, "LoginShell", true, conf, CONF_login_shell);
|
||||
|
Reference in New Issue
Block a user