svn rev #25385: trunk/src/kdc/

ghudson@MIT.EDU ghudson at MIT.EDU
Thu Oct 20 11:16:03 EDT 2011


http://src.mit.edu/fisheye/changelog/krb5/?cs=25385
Commit By: ghudson
Log Message:
ticket: 6988
subject: Fix handling of null edata method in KDC preauth
target_version: 1.10
tags: pullup

Correctly include an empty padata value if a KDC preauth system has no
get_edata method.  This bug prevented the KDC from indicating FAST
support in preauth-required errors.


Changed Files:
U   trunk/src/kdc/kdc_preauth.c
Modified: trunk/src/kdc/kdc_preauth.c
===================================================================
--- trunk/src/kdc/kdc_preauth.c	2011-10-20 03:45:12 UTC (rev 25384)
+++ trunk/src/kdc/kdc_preauth.c	2011-10-20 15:16:03 UTC (rev 25385)
@@ -829,7 +829,7 @@
         ap->get_edata(kdc_context, state->request, &callbacks, state->rock,
                       ap->moddata, ap->type, finish_get_edata, state);
     } else
-        finish_get_edata(state, ap->type, NULL);
+        finish_get_edata(state, 0, NULL);
     return;
 
 next:




More information about the cvs-krb5 mailing list