From: Art Cancro Date: Fri, 17 Jul 2009 20:55:35 +0000 (+0000) Subject: * Repaired an OpenID login screen that was damaged during the strbuf conversion X-Git-Tag: v7.86~978 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=0b62159afeb5c36b82ae92a218959844f8966901 * Repaired an OpenID login screen that was damaged during the strbuf conversion --- diff --git a/webcit/auth.c b/webcit/auth.c index 2c5c1d04a..008e115e4 100644 --- a/webcit/auth.c +++ b/webcit/auth.c @@ -74,7 +74,7 @@ void display_openid_name_request(const StrBuf *claimed_id, const StrBuf *usernam if (StrLength(username) > 0) { Buf = NewStrBufPlain(NULL, StrLength(username)); - StrEscAppend(Buf, claimed_id, NULL, 0, 0); + StrEscAppend(Buf, username, NULL, 0, 0); svprintf(HKEY("REASON"), WCS_STRING, _("However, the user name '%s' conflicts with an existing user."), ChrPtr(Buf));