From c8a8f60f73ce493279d00f63819a17059ae1ed05 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 10 Jun 2008 02:31:56 +0000 Subject: [PATCH] Added an aide_message() when an OpenID is claimed --- citadel/modules/openid/serv_openid_rp.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/citadel/modules/openid/serv_openid_rp.c b/citadel/modules/openid/serv_openid_rp.c index 3b0b639a6..05fbccea1 100644 --- a/citadel/modules/openid/serv_openid_rp.c +++ b/citadel/modules/openid/serv_openid_rp.c @@ -78,6 +78,7 @@ int attach_openid(struct ctdluser *who, char *claimed_id) long fetched_usernum; char *data; int data_len; + char buf[2048]; if (!who) return(1); if (!claimed_id) return(1); @@ -111,8 +112,10 @@ int attach_openid(struct ctdluser *who, char *claimed_id) cdb_store(CDB_OPENID, claimed_id, strlen(claimed_id), data, data_len); free(data); - CtdlLogPrintf(CTDL_INFO, "%s has been attached to %s (%ld)\n", - claimed_id, who->fullname, who->usernum); + snprintf(buf, sizeof buf, "User <%s> (#%ld) has claimed the OpenID URL %s\n", + who->fullname, who->usernum, claimed_id); + aide_message(buf, "OpenID claim"); + CtdlLogPrintf(CTDL_INFO, "%s", buf); return(0); } -- 2.30.2