--- a/src/protocols/msn/userlist.c Sat Apr 02 16:38:33 2005 +0000 +++ b/src/protocols/msn/userlist.c Sat Apr 02 17:18:43 2005 +0000 @@ -73,7 +73,7 @@ got_new_entry(GaimConnection *gc, const char *passport, const char *friendly) { MsnPermitAdd *pa; - char *msg, *escaped; + char *msg; pa = g_new0(MsnPermitAdd, 1); pa->who = g_strdup(passport); @@ -81,13 +81,11 @@ if (friendly != NULL) { - escaped = g_markup_escape_text(friendly, -1); msg = g_strdup_printf( _("The user %s (%s) wants to add %s to his or her " "buddy list."), - passport, escaped, + passport, friendly, gaim_account_get_username(gc->account)); - g_free(escaped); } else {