summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/kdc/dispatch.c4
1 files changed, 1 insertions, 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)) {