mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-09 15:23:50 -05:00
Introduce a new checkbox and command-line option to inhibit use of
Pageant for local authentication. (This is a `don't use Pageant for authentication at session startup' button rather than a `pretend Pageant doesn't exist' button: that is, agent forwarding is independent of this option.) [originally from svn r6572]
This commit is contained in:
4
config.c
4
config.c
@ -1841,6 +1841,10 @@ void setup_config_box(struct controlbox *b, int midsession,
|
||||
|
||||
s = ctrl_getset(b, "Connection/SSH/Auth", "methods",
|
||||
"Authentication methods");
|
||||
ctrl_checkbox(s, "Attempt authentication using Pageant", 'p',
|
||||
HELPCTX(ssh_auth_pageant),
|
||||
dlg_stdcheckbox_handler,
|
||||
I(offsetof(Config,tryagent)));
|
||||
ctrl_checkbox(s, "Attempt TIS or CryptoCard auth (SSH-1)", 'm',
|
||||
HELPCTX(ssh_auth_tis),
|
||||
dlg_stdcheckbox_handler,
|
||||
|
Reference in New Issue
Block a user