From: Theodore Tso Date: Tue, 11 Nov 1997 01:08:13 +0000 (+0000) Subject: kdc_util.c (kdc_process_tgs_req): If not using the reply cache, X-Git-Tag: krb5-1.1-beta1~960 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2de5c34126cbb45036bdc2316575017f937d83c5;p=krb5.git 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 --- 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 + + * 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 * 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 }