krb5 commit: Cache TGS-REPs too

Tom Yu tlyu at MIT.EDU
Thu Sep 27 17:37:42 EDT 2012


https://github.com/krb5/krb5/commit/22206a061dfe55db5cbe2c70190b3bd923d9e615
commit 22206a061dfe55db5cbe2c70190b3bd923d9e615
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.
    
    ticket: 7388 (new)
    target_version: 1.10.4
    tags: pullup

 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 adbb0c3..e3f43bc 100644
--- a/src/kdc/dispatch.c
+++ b/src/kdc/dispatch.c
@@ -178,7 +178,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