]> andersk Git - openssh.git/blobdiff - auth2.c
- markus@cvs.openbsd.org 2003/05/14 02:15:47
[openssh.git] / auth2.c
diff --git a/auth2.c b/auth2.c
index b2f14bacd439ec8fde6d0f637d3a860e7c4673c4..03d170e23867bb886697d602de44dfc58ae9ad8a 100644 (file)
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: auth2.c,v 1.97 2003/04/08 20:21:28 itojun Exp $");
+RCSID("$OpenBSD: auth2.c,v 1.98 2003/05/14 02:15:47 markus Exp $");
 
 #include "ssh2.h"
 #include "xmalloc.h"
@@ -50,6 +50,9 @@ extern Authmethod method_pubkey;
 extern Authmethod method_passwd;
 extern Authmethod method_kbdint;
 extern Authmethod method_hostbased;
+#ifdef KRB5
+extern Authmethod method_kerberos;
+#endif
 
 Authmethod *authmethods[] = {
        &method_none,
@@ -57,6 +60,9 @@ Authmethod *authmethods[] = {
        &method_passwd,
        &method_kbdint,
        &method_hostbased,
+#ifdef KRB5
+       &method_kerberos,
+#endif
        NULL
 };
 
This page took 0.036892 seconds and 4 git commands to generate.