summaryrefslogtreecommitdiff
path: root/auth2.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-08-26 12:08:15 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-08-26 12:08:15 +1000
commit1e66a39e40f184f5a5e8c158cd0e1686ab8988b3 (patch)
treeb0b9dcab076fa6575aee1533a8558053308cd2d2 /auth2.c
parentbe1a901f9947fdcf56703afaf15942c33462a3dc (diff)
downloadopenssh-git-1e66a39e40f184f5a5e8c158cd0e1686ab8988b3.tar.gz
- markus@cvs.openbsd.org 2003/08/22 13:22:27
[auth2.c] (auth2-krb5.c removed) nuke "kerberos-2@ssh.com"
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/auth2.c b/auth2.c
index 4a305a41..efff03a5 100644
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth2.c,v 1.100 2003/08/22 10:56:08 markus Exp $");
+RCSID("$OpenBSD: auth2.c,v 1.101 2003/08/22 13:22:27 markus Exp $");
#include "ssh2.h"
#include "xmalloc.h"
@@ -54,9 +54,6 @@ extern Authmethod method_pubkey;
extern Authmethod method_passwd;
extern Authmethod method_kbdint;
extern Authmethod method_hostbased;
-#ifdef KRB5
-extern Authmethod method_kerberos;
-#endif
#ifdef GSSAPI
extern Authmethod method_gssapi;
#endif
@@ -70,9 +67,6 @@ Authmethod *authmethods[] = {
&method_passwd,
&method_kbdint,
&method_hostbased,
-#ifdef KRB5
- &method_kerberos,
-#endif
NULL
};