changeset 1939:0ec62ca82a8a

[gaim-migrate @ 1949] Fixed this. It should have been url_decoding it but wasnt. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 01 Jun 2001 21:43:43 +0000
parents c9db54d8d8dc
children 8de58cd2892f
files plugins/msn/msn.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/msn/msn.c	Fri Jun 01 21:33:08 2001 +0000
+++ b/plugins/msn/msn.c	Fri Jun 01 21:43:43 2001 +0000
@@ -298,7 +298,7 @@
 	if (!strcasecmp(res[2], "RL")) {
 		struct msn_ask_add_permit *ap = g_new0(struct msn_ask_add_permit, 1);
 
-		snprintf(buf, MSN_BUF_LEN, "The user %s (%s) wants to add you to their buddylist.", res[4], res[5]);
+		snprintf(buf, MSN_BUF_LEN, "The user %s (%s) wants to add you to their buddylist.", res[4], url_decode(res[5]));
 
 		ap->user = g_strdup(res[4]);