diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-05-07 17:09:20 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-05-07 17:09:20 +0000 |
| commit | 9800d86211d9f7c01c4ac806ccfcbf8ef1705056 (patch) | |
| tree | 61d6795f81b4faff8dcd555ad89fbb191017f4dd /src | |
| parent | b59ab441203430b8ddeb4f8fe79b45a1aa61ef34 (diff) | |
| download | krb5-9800d86211d9f7c01c4ac806ccfcbf8ef1705056.tar.gz krb5-9800d86211d9f7c01c4ac806ccfcbf8ef1705056.tar.xz krb5-9800d86211d9f7c01c4ac806ccfcbf8ef1705056.zip | |
call process_tgs_req, which calls the others
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@760 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/kdc/dispatch.c | 4 |
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)) { |
