Since GSSAPI is now on its own panel, we may as well have a full set of
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Sat, 25 Sep 2010 15:51:14 +0000 (15:51 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Sat, 25 Sep 2010 15:51:14 +0000 (15:51 +0000)
keyboard shortcuts.

git-svn-id: svn://svn.tartarus.org/sgt/putty@9008 cda61777-01e9-0310-a592-d414129be87e

config.c

index f6c1640..4135fb6 100644 (file)
--- a/config.c
+++ b/config.c
@@ -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,