From c50b57d65d78cddb5034cc2dfe5bd986d07d7f84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Thu, 14 Apr 2005 19:02:29 +0000 Subject: [PATCH] AUTHENTICATE and AUTHENTICATE_V2 is almost the same, and clients (klog) can deal with that the kaserver returns the same thing for both git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14795 ec53bebd-3082-4978-b11e-865c3cabbd6b --- kdc/kaserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdc/kaserver.c b/kdc/kaserver.c index 90a54f8ac..0d58c0202 100644 --- a/kdc/kaserver.c +++ b/kdc/kaserver.c @@ -827,6 +827,7 @@ do_kaserver(unsigned char *buf, krb5_ret_int32(sp, &op); switch (op) { case AUTHENTICATE : + case AUTHENTICATE_V2 : do_authenticate (&hdr, sp, addr, reply); break; case GETTICKET : @@ -845,7 +846,6 @@ do_kaserver(unsigned char *buf, case DEBUG : case GETPASSWORD : case GETRANDOMKEY : - case AUTHENTICATE_V2 : default : make_error_reply (&hdr, RXGEN_OPCODE, reply); break;