Use the same key for both saving and loading the GSSAPI implementation
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 15 Sep 2010 18:50:34 +0000 (18:50 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 15 Sep 2010 18:50:34 +0000 (18:50 +0000)
preference list. Spotted by Daniel Kessler.

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

settings.c

index 3d51f51..5514752 100644 (file)
@@ -642,7 +642,7 @@ void load_open_settings(void *sesskey, Config *cfg)
     gppi(sesskey, "AuthTIS", 0, &cfg->try_tis_auth);
     gppi(sesskey, "AuthKI", 1, &cfg->try_ki_auth);
     gppi(sesskey, "AuthGSSAPI", 1, &cfg->try_gssapi_auth);
-    gprefs(sesskey, "GSSList", "\0",
+    gprefs(sesskey, "GSSLibs", "\0",
           gsslibkeywords, ngsslibs, cfg->ssh_gsslist);
     gppi(sesskey, "SshNoShell", 0, &cfg->ssh_no_shell);
     gppfile(sesskey, "PublicKeyFile", &cfg->keyfile);