diff options
Diffstat (limited to 'auth2.c')
-rw-r--r-- | auth2.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -23,7 +23,7 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | RCSID("$OpenBSD: auth2.c,v 1.97 2003/04/08 20:21:28 itojun Exp $"); | 26 | RCSID("$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; | |||
50 | extern Authmethod method_passwd; | 50 | extern Authmethod method_passwd; |
51 | extern Authmethod method_kbdint; | 51 | extern Authmethod method_kbdint; |
52 | extern Authmethod method_hostbased; | 52 | extern Authmethod method_hostbased; |
53 | #ifdef KRB5 | ||
54 | extern Authmethod method_kerberos; | ||
55 | #endif | ||
53 | 56 | ||
54 | Authmethod *authmethods[] = { | 57 | Authmethod *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 | ||