Pass in actual packet to process_tgs_req so that two different checksumming
authorTheodore Tso <tytso@mit.edu>
Thu, 3 Jun 1993 11:48:28 +0000 (11:48 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 3 Jun 1993 11:48:28 +0000 (11:48 +0000)
can be done, in case of ASN.1 screwup.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2578 dc483132-0cff-0310-8789-dd5450dbe970

src/kdc/dispatch.c

index 037443e3c2e6634c1fa3c03cef5b1aebaa889f8f..4ecdfdca03247e80077da7286ada9640a2204ebf 100644 (file)
@@ -46,7 +46,6 @@ dispatch(pkt, from, is_secondary, response)
 
     krb5_error_code retval;
     krb5_kdc_req *as_req;
-    krb5_kdc_req *tgs_req;
 
     /* decode incoming packet, and dispatch */
 
@@ -59,10 +58,7 @@ dispatch(pkt, from, is_secondary, response)
     /* try TGS_REQ first; they are more common! */
 
     if (krb5_is_tgs_req(pkt)) {
-       if (!(retval = decode_krb5_tgs_req(pkt, &tgs_req))) {
-           retval = process_tgs_req(tgs_req, from, is_secondary, response);
-           krb5_free_kdc_req(tgs_req);
-       }
+       retval = process_tgs_req(pkt, from, is_secondary, response);
     } else if (krb5_is_as_req(pkt)) {
        if (!(retval = decode_krb5_as_req(pkt, &as_req))) {
            retval = process_as_req(as_req, from, is_secondary, response);