From 0b62159afeb5c36b82ae92a218959844f8966901 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 17 Jul 2009 20:55:35 +0000 Subject: [PATCH] * Repaired an OpenID login screen that was damaged during the strbuf conversion --- webcit/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.30.2