]> andersk Git - gssapi-openssh.git/commitdiff
Fix bug that disabled gssapi-keyex, external-keyx, and gssapi methods on the client-side. OPENSSH_5_2P1_GSSAPI_20090506
authorbasney <basney>
Wed, 6 May 2009 18:46:34 +0000 (18:46 +0000)
committerbasney <basney>
Wed, 6 May 2009 18:46:34 +0000 (18:46 +0000)
openssh/sshconnect2.c

index 7c4e84ecd4086e8c3aa751a7051061a8f6c32aa2..4696f344dbcf618aeb0dfb154cb4d2b99276d73e 100644 (file)
@@ -312,10 +312,12 @@ Authmethod authmethods[] = {
 #ifdef GSSAPI
        {"gssapi-keyex",
                userauth_gsskeyex,
+               NULL,
                &options.gss_authentication,
                NULL},
        {"external-keyx",
                userauth_external,
+               NULL,
                &options.gss_authentication,
                NULL},
        {"gssapi-with-mic",
@@ -325,6 +327,7 @@ Authmethod authmethods[] = {
                NULL},
        {"gssapi",
                userauth_gssapi,
+               NULL,
                &options.gss_authentication,
                NULL},
 #endif
This page took 0.043333 seconds and 5 git commands to generate.