summaryrefslogtreecommitdiff
path: root/auth2.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-03-20 00:32:39 +0000
committerColin Watson <cjwatson@debian.org>2014-03-20 00:34:16 +0000
commit2ee2de47fd0f684f54218d31b4ec83930e69c18e (patch)
tree86848a7668424b392d48791a0e41e05f9df7b62b /auth2.c
parentc9947303ad3c432b1cadfbeb1d95a7cd38662d66 (diff)
parent9cbb60f5e4932634db04c330c88abc49cc5567bd (diff)
Merge 6.6p1.
* New upstream release (http://www.openssh.com/txt/release-6.6).
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/auth2.c b/auth2.c
index b55bbcd95..70f29250d 100644
--- a/auth2.c
+++ b/auth2.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth2.c,v 1.129 2013/05/19 02:42:42 djm Exp $ */ 1/* $OpenBSD: auth2.c,v 1.130 2014/01/29 06:18:35 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * 4 *
@@ -72,9 +72,6 @@ extern Authmethod method_hostbased;
72extern Authmethod method_gsskeyex; 72extern Authmethod method_gsskeyex;
73extern Authmethod method_gssapi; 73extern Authmethod method_gssapi;
74#endif 74#endif
75#ifdef JPAKE
76extern Authmethod method_jpake;
77#endif
78 75
79Authmethod *authmethods[] = { 76Authmethod *authmethods[] = {
80 &method_none, 77 &method_none,
@@ -83,9 +80,6 @@ Authmethod *authmethods[] = {
83 &method_gsskeyex, 80 &method_gsskeyex,
84 &method_gssapi, 81 &method_gssapi,
85#endif 82#endif
86#ifdef JPAKE
87 &method_jpake,
88#endif
89 &method_passwd, 83 &method_passwd,
90 &method_kbdint, 84 &method_kbdint,
91 &method_hostbased, 85 &method_hostbased,
@@ -278,9 +272,6 @@ input_userauth_request(int type, u_int32_t seq, void *ctxt)
278 } 272 }
279 /* reset state */ 273 /* reset state */
280 auth2_challenge_stop(authctxt); 274 auth2_challenge_stop(authctxt);
281#ifdef JPAKE
282 auth2_jpake_stop(authctxt);
283#endif
284 275
285#ifdef GSSAPI 276#ifdef GSSAPI
286 /* XXX move to auth2_gssapi_stop() */ 277 /* XXX move to auth2_gssapi_stop() */