1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Since GSSAPI is now on its own panel, we may as well have a full set of

keyboard shortcuts.

[originally from svn r9008]
This commit is contained in:
Jacob Nevins 2010-09-25 15:51:14 +00:00
parent ffe40202a4
commit 5981b5e99d

View File

@ -2128,11 +2128,11 @@ void setup_config_box(struct controlbox *b, int midsession,
s = ctrl_getset(b, "Connection/SSH/Auth/GSSAPI", "gssapi", NULL);
ctrl_checkbox(s, "Attempt GSSAPI authentication (SSH-2 only)",
NO_SHORTCUT, HELPCTX(ssh_gssapi),
't', HELPCTX(ssh_gssapi),
dlg_stdcheckbox_handler,
I(offsetof(Config,try_gssapi_auth)));
ctrl_checkbox(s, "Allow GSSAPI credential delegation", NO_SHORTCUT,
ctrl_checkbox(s, "Allow GSSAPI credential delegation", 'd',
HELPCTX(ssh_gssapi_delegation),
dlg_stdcheckbox_handler,
I(offsetof(Config,gssapifwd)));
@ -2141,8 +2141,8 @@ void setup_config_box(struct controlbox *b, int midsession,
* GSSAPI library selection.
*/
if (ngsslibs > 1) {
c = ctrl_draglist(s, "Preference order for GSSAPI libraries:", NO_SHORTCUT,
HELPCTX(ssh_gssapi_libraries),
c = ctrl_draglist(s, "Preference order for GSSAPI libraries:",
'l', HELPCTX(ssh_gssapi_libraries),
gsslist_handler, P(NULL));
c->listbox.height = ngsslibs;
@ -2165,7 +2165,7 @@ void setup_config_box(struct controlbox *b, int midsession,
* displayed.
*/
ctrl_filesel(s, "User-supplied GSSAPI library path:", 'l',
ctrl_filesel(s, "User-supplied GSSAPI library path:", 'p',
FILTER_DYNLIB_FILES, FALSE, "Select library file",
HELPCTX(ssh_gssapi_libraries),
dlg_stdfilesel_handler,