# HG changeset patch # User Daniel Atallah # Date 1210560908 0 # Node ID 7d8c06d88125601ad72e06a6ac19e7b15997d881 # Parent 75c2382d54d1c188848965993582dba3c903aa19 Presumably this is what was intended. diff -r 75c2382d54d1 -r 7d8c06d88125 libpurple/protocols/yahoo/yahoo_profile.c --- a/libpurple/protocols/yahoo/yahoo_profile.c Mon May 12 02:27:24 2008 +0000 +++ b/libpurple/protocols/yahoo/yahoo_profile.c Mon May 12 02:55:08 2008 +0000 @@ -1003,7 +1003,7 @@ purple_debug_misc("yahoo", "url_buffer = %p\n", url_buffer); /* convert to utf8 */ - if (strings && strings->charset != XX) { + if (strings && strings->charset) { p = g_convert(stripped, -1, "utf-8", strings->charset, NULL, NULL, NULL); if (!p) { @@ -1023,7 +1023,7 @@ p = NULL; /* "Last updated" should also be converted to utf8 and with   killed */ - if (strings && strings->charset != XX) { + if (strings && strings->charset) { last_updated_utf8_string = g_convert(last_updated_string, -1, "utf-8", strings->charset, NULL, NULL, NULL); yahoo_remove_nonbreaking_spaces(last_updated_utf8_string);