From: basney Date: Wed, 6 May 2009 18:46:34 +0000 (+0000) Subject: Fix bug that disabled gssapi-keyex, external-keyx, and gssapi methods on the client-side. X-Git-Tag: OPENSSH_5_2P1_GSSAPI_20090506 X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/commitdiff_plain/737cfc81cdff227e301e5415be53a22426f1bf31 Fix bug that disabled gssapi-keyex, external-keyx, and gssapi methods on the client-side. --- diff --git a/openssh/sshconnect2.c b/openssh/sshconnect2.c index 7c4e84e..4696f34 100644 --- a/openssh/sshconnect2.c +++ b/openssh/sshconnect2.c @@ -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