diff options
author | Colin Watson <cjwatson@debian.org> | 2010-01-02 09:44:38 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2010-01-02 09:44:38 +0000 |
commit | d32d704e052adc1b68656ffaa1b4f22fd5a83fa3 (patch) | |
tree | fc66c1238a6c69a37ec010d19f9c9f339b8f8c0d /sshconnect2.c | |
parent | 02a7a84677de774102045cb054dafbdb5ed5cacb (diff) |
fix gssapi-keyex and gssapi methods following JPAKE
Diffstat (limited to 'sshconnect2.c')
-rw-r--r-- | sshconnect2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sshconnect2.c b/sshconnect2.c index 233d91f5e..5c58332e1 100644 --- a/sshconnect2.c +++ b/sshconnect2.c | |||
@@ -305,6 +305,7 @@ Authmethod authmethods[] = { | |||
305 | #ifdef GSSAPI | 305 | #ifdef GSSAPI |
306 | {"gssapi-keyex", | 306 | {"gssapi-keyex", |
307 | userauth_gsskeyex, | 307 | userauth_gsskeyex, |
308 | NULL, | ||
308 | &options.gss_authentication, | 309 | &options.gss_authentication, |
309 | NULL}, | 310 | NULL}, |
310 | {"gssapi-with-mic", | 311 | {"gssapi-with-mic", |
@@ -314,6 +315,7 @@ Authmethod authmethods[] = { | |||
314 | NULL}, | 315 | NULL}, |
315 | {"gssapi", | 316 | {"gssapi", |
316 | userauth_gssapi, | 317 | userauth_gssapi, |
318 | NULL, | ||
317 | &options.gss_authentication, | 319 | &options.gss_authentication, |
318 | NULL}, | 320 | NULL}, |
319 | #endif | 321 | #endif |