changeset 29869:95ab863d580f

gg: For protocol 8.0+, the server sends this in UTF-8 now. Closes #11775. committer: Paul Aurich <paul@darkrain42.org>
author kkszysiu@gmail.com
date Sun, 02 May 2010 21:31:23 +0000
parents fb6312881d56
children 5286451c3d44
files libpurple/protocols/gg/search.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/gg/search.c	Sun May 02 21:27:42 2010 +0000
+++ b/libpurple/protocols/gg/search.c	Sun May 02 21:31:23 2010 +0000
@@ -207,7 +207,7 @@
 {
 	char *tmp;
 
-	tmp = charset_convert(gg_pubdir50_get(res, num, field), "CP1250", "UTF-8");
+	tmp = g_strdup(gg_pubdir50_get(res, num, field));
 
 	return (tmp == NULL) ? g_strdup("") : tmp;
 }