search for: prefer_askpass

Displaying 1 result from an estimated 1 matches for "prefer_askpass".

2004 Oct 03
3
[PATCH] PreferAskpass in ssh_config
...lpath", oControlPath }, { "controlmaster", oControlMaster }, + { "preferaskpass", oPreferAskpass }, { NULL, oBadOption } }; @@ -774,6 +775,10 @@ intptr = &options->control_master; goto parse_yesnoask; + case oPreferAskpass: + intptr = &options->prefer_askpass; + goto parse_flag; + case oDeprecated: debug("%s line %d: Deprecated option \"%s\"", filename, linenum, keyword); @@ -917,6 +922,7 @@ options->num_send_env = 0; options->control_path = NULL; options->control_master = -1; + options->prefer_askpass...