svn rev #22136: branches/fast/src/kdc/
hartmans@MIT.EDU
hartmans at MIT.EDU
Thu Mar 26 01:37:12 EDT 2009
http://src.mit.edu/fisheye/changelog/krb5/?cs=22136
Commit By: hartmans
Log Message:
Set status when kdc_find_fast fails in do_as_req.c
Changed Files:
U branches/fast/src/kdc/do_as_req.c
Modified: branches/fast/src/kdc/do_as_req.c
===================================================================
--- branches/fast/src/kdc/do_as_req.c 2009-03-26 05:37:09 UTC (rev 22135)
+++ branches/fast/src/kdc/do_as_req.c 2009-03-26 05:37:12 UTC (rev 22136)
@@ -141,9 +141,10 @@
goto errout;
}
errcode = kdc_find_fast(&request, req_pkt, NULL /*TGS key*/, state);
- if (errcode)
+ if (errcode) {
+ status = "error decoding FAST";
goto errout;
-
+ }
if (!request->client) {
status = "NULL_CLIENT";
errcode = KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN;
More information about the cvs-krb5
mailing list