summaryrefslogtreecommitdiff
path: root/auth2.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/auth2.c b/auth2.c
index b2f14bacd..03d170e23 100644
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth2.c,v 1.97 2003/04/08 20:21:28 itojun Exp $"); 26RCSID("$OpenBSD: auth2.c,v 1.98 2003/05/14 02:15:47 markus Exp $");
27 27
28#include "ssh2.h" 28#include "ssh2.h"
29#include "xmalloc.h" 29#include "xmalloc.h"
@@ -50,6 +50,9 @@ extern Authmethod method_pubkey;
50extern Authmethod method_passwd; 50extern Authmethod method_passwd;
51extern Authmethod method_kbdint; 51extern Authmethod method_kbdint;
52extern Authmethod method_hostbased; 52extern Authmethod method_hostbased;
53#ifdef KRB5
54extern Authmethod method_kerberos;
55#endif
53 56
54Authmethod *authmethods[] = { 57Authmethod *authmethods[] = {
55 &method_none, 58 &method_none,
@@ -57,6 +60,9 @@ Authmethod *authmethods[] = {
57 &method_passwd, 60 &method_passwd,
58 &method_kbdint, 61 &method_kbdint,
59 &method_hostbased, 62 &method_hostbased,
63#ifdef KRB5
64 &method_kerberos,
65#endif
60 NULL 66 NULL
61}; 67};
62 68