From 737cfc81cdff227e301e5415be53a22426f1bf31 Mon Sep 17 00:00:00 2001 From: basney Date: Wed, 6 May 2009 18:46:34 +0000 Subject: [PATCH] Fix bug that disabled gssapi-keyex, external-keyx, and gssapi methods on the client-side. --- openssh/sshconnect2.c | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.45.1