From 9800d86211d9f7c01c4ac806ccfcbf8ef1705056 Mon Sep 17 00:00:00 2001 From: John Kohl Date: Mon, 7 May 1990 17:09:20 +0000 Subject: [PATCH] call process_tgs_req, which calls the others git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@760 dc483132-0cff-0310-8789-dd5450dbe970 --- src/kdc/dispatch.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/kdc/dispatch.c b/src/kdc/dispatch.c index 2365ecbd0..c4fa67277 100644 --- a/src/kdc/dispatch.c +++ b/src/kdc/dispatch.c @@ -39,9 +39,7 @@ krb5_data **response; if (krb5_is_tgs_req(pkt)) { if (!(retval = decode_krb5_tgs_req(pkt, &tgs_req))) { - /* it's now decoded, but still has an encrypted part to work on */ - if (!(retval = decrypt_tgs_req(tgs_req, from))) - retval = process_tgs_req(tgs_req, from, response); + retval = process_tgs_req(tgs_req, from, response); krb5_free_tgs_req(tgs_req); } } else if (krb5_is_as_req(pkt)) { -- 2.26.2