diff options
| author | Theodore Tso <tytso@mit.edu> | 1997-11-11 01:08:13 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1997-11-11 01:08:13 +0000 |
| commit | 2de5c34126cbb45036bdc2316575017f937d83c5 (patch) | |
| tree | d596b648ec68abf9a0d9b6c9f80bade86e6df0b4 /src | |
| parent | e6c1912c5efb7c505865fdab523d92378bd8877c (diff) | |
kdc_util.c (kdc_process_tgs_req): If not using the reply cache,
properly handle a failure return from krb5_rd_req_decode_anyflag().
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10270 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/kdc/ChangeLog | 6 | ||||
| -rw-r--r-- | src/kdc/kdc_util.c | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/kdc/ChangeLog b/src/kdc/ChangeLog index 287f84756..c9888f488 100644 --- a/src/kdc/ChangeLog +++ b/src/kdc/ChangeLog @@ -1,3 +1,9 @@ +Mon Nov 10 20:03:14 1997 Theodore Y. Ts'o <tytso@mit.edu> + + * kdc_util.c (kdc_process_tgs_req): If not using the reply cache, + properly handle a failure return from + krb5_rd_req_decode_anyflag(). + Wed Oct 8 12:20:35 1997 Ezra Peisach <epeisach@kangaroo.mit.edu> * main.c (main): Initialize kdc error table with diff --git a/src/kdc/kdc_util.c b/src/kdc/kdc_util.c index 2fd9245c9..5e5ce0a85 100644 --- a/src/kdc/kdc_util.c +++ b/src/kdc/kdc_util.c @@ -257,7 +257,9 @@ kdc_process_tgs_req(request, from, pkt, ticket, subkey) goto cleanup_auth_context; } } else - goto cleanup_auth_context; + goto cleanup_auth_context; +#else + goto cleanup_auth_context; #endif } |
