From: John Kohl Date: Mon, 7 May 1990 17:09:20 +0000 (+0000) Subject: call process_tgs_req, which calls the others X-Git-Tag: krb5-1.0-alpha2~643 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9800d86211d9f7c01c4ac806ccfcbf8ef1705056;p=krb5.git call process_tgs_req, which calls the others git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@760 dc483132-0cff-0310-8789-dd5450dbe970 --- 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)) {