projects
/
krb5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b59ab44
)
call process_tgs_req, which calls the others
author
John Kohl
<jtkohl@mit.edu>
Mon, 7 May 1990 17:09:20 +0000
(17:09 +0000)
committer
John Kohl
<jtkohl@mit.edu>
Mon, 7 May 1990 17:09:20 +0000
(17:09 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@760
dc483132
-0cff-0310-8789-
dd5450dbe970
src/kdc/dispatch.c
patch
|
blob
|
history
diff --git
a/src/kdc/dispatch.c
b/src/kdc/dispatch.c
index 2365ecbd0445452f2dec46db266881c40c825f82..c4fa6727770b447a62d3dead748736b1cda26542 100644
(file)
--- 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)) {