1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-15 10:07:39 -05:00

Oops - check in leftovers from yesterday's development. That's what

I get for running most of my cvs commands in the unix subdir :-/

[originally from svn r2078]
This commit is contained in:
Simon Tatham
2002-10-16 09:28:17 +00:00
parent 4f3806f735
commit e30ab28d34
3 changed files with 4 additions and 3 deletions

View File

@ -311,6 +311,7 @@ void save_settings(char *section, int do_host, Config * cfg)
write_setting_i(sesskey, "BugDHGEx2", cfg->sshbug_dhgex2);
write_setting_i(sesskey, "StampUtmp", cfg->stamp_utmp);
write_setting_i(sesskey, "LoginShell", cfg->login_shell);
write_setting_i(sesskey, "ScrollbarOnLeft", cfg->scrollbar_on_left);
close_settings_w(sesskey);
}
@ -596,6 +597,7 @@ void load_settings(char *section, int do_host, Config * cfg)
gppi(sesskey, "BugDHGEx2", BUG_AUTO, &i); cfg->sshbug_dhgex2 = i;
gppi(sesskey, "StampUtmp", 1, &cfg->stamp_utmp);
gppi(sesskey, "LoginShell", 1, &cfg->login_shell);
gppi(sesskey, "ScrollbarOnLeft", 0, &cfg->scrollbar_on_left);
close_settings_r(sesskey);
}