1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

"-noagent" and friends should be marked SAVEABLE, to ensure they're not

clobbered by "-load".

[originally from svn r7320]
This commit is contained in:
Jacob Nevins 2007-02-24 22:43:57 +00:00
parent b897c90dd3
commit fe1909e0e2

View File

@ -322,12 +322,14 @@ int cmdline_process_param(char *p, char *value, int need_save, Config *cfg)
!strcmp(p, "-pageant")) {
RETURN(1);
UNAVAILABLE_IN(TOOLTYPE_NONNETWORK);
SAVEABLE(0);
cfg->tryagent = TRUE;
}
if (!strcmp(p, "-noagent") || !strcmp(p, "-nopagent") ||
!strcmp(p, "-nopageant")) {
RETURN(1);
UNAVAILABLE_IN(TOOLTYPE_NONNETWORK);
SAVEABLE(0);
cfg->tryagent = FALSE;
}