From 45550caffb5422d44c827f9f13840ed137187b2a Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 19 Jul 2009 04:51:23 +0000 Subject: [PATCH] * Added a log message that indicates what went wrong when an OpenID association fails. --- webcit/openid.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webcit/openid.c b/webcit/openid.c index 75ced9909..65247d975 100644 --- a/webcit/openid.c +++ b/webcit/openid.c @@ -86,6 +86,9 @@ void openid_attach(void) { http_redirect(&buf[4]); return; } + else { + lprintf(CTDL_DEBUG, "OpenID attach failed: %s\n", &buf[4]); + } } /* If we get to this point then something failed. */ -- 2.30.2