From: Art Cancro Date: Tue, 10 Jun 2008 02:31:56 +0000 (+0000) Subject: Added an aide_message() when an OpenID is claimed X-Git-Tag: v7.86~2161 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=c8a8f60f73ce493279d00f63819a17059ae1ed05 Added an aide_message() when an OpenID is claimed --- 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); }