From b6fc70019ebfe7bd48073bf2405c8a2178b3a627 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 24 Jul 2011 22:33:39 -0700 Subject: [PATCH] better error message --- lib/krb5/init_creds_pw.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/krb5/init_creds_pw.c b/lib/krb5/init_creds_pw.c index f74e67671..118ba3e50 100644 --- a/lib/krb5/init_creds_pw.c +++ b/lib/krb5/init_creds_pw.c @@ -1662,7 +1662,8 @@ check_fast(krb5_context context, struct fast_state *state) { if (state->flags & KRB5_FAST_EXPECTED) { krb5_set_error_message(context, KRB5KRB_AP_ERR_MODIFIED, - "Expected FAST not not found"); + "Expected FAST, but no FAST " + "was in the response from the KDC"); return KRB5KRB_AP_ERR_MODIFIED; } return 0;