krb5 commit [krb5-1.10]: Cache TGS-REPs too

Tom Yu tlyu at MIT.EDU
Wed Oct 31 13:46:02 EDT 2012


https://github.com/krb5/krb5/commit/ac130129d9ce012a6470e1ab637a52b46c033c03
commit ac130129d9ce012a6470e1ab637a52b46c033c03
Author: Tom Yu <tlyu at mit.edu>
Date:   Thu Sep 27 17:18:18 2012 -0400

    Cache TGS-REPs too
    
    Changes in r25660 inadvertently failed to insert TGS-REPs into the
    lookaside cache.  Call finish_dispatch_cache() at the end of
    dispatch() to handle this case.
    
    (cherry picked from commit 22206a061dfe55db5cbe2c70190b3bd923d9e615)
    
    ticket: 7388
    version_fixed: 1.10.4
    status: resolved

 src/kdc/dispatch.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/kdc/dispatch.c b/src/kdc/dispatch.c
index efb54ed..920e0b9 100644
--- a/src/kdc/dispatch.c
+++ b/src/kdc/dispatch.c
@@ -181,7 +181,7 @@ dispatch(void *cb, struct sockaddr *local_saddr,
     } else
         retval = KRB5KRB_AP_ERR_MSG_TYPE;
 
-    finish_dispatch(state, retval, response);
+    finish_dispatch_cache(state, retval, response);
 }
 
 static krb5_error_code


More information about the cvs-krb5 mailing list