# HG changeset patch # User Sean Egan # Date 1103075613 0 # Node ID cbfd90f7fa47ca6cd1a291311e902a88507599c9 # Parent bb7238808c9b1fea6aa45d2433077c638275d4a7 [gaim-migrate @ 11600] I just read that ISO-8859-1-Windows-3.1-Latin-1's official name is Windows-1252, and iconv supports it. This should be good, then. committer: Tailor Script diff -r bb7238808c9b -r cbfd90f7fa47 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Wed Dec 15 01:23:13 2004 +0000 +++ b/src/protocols/oscar/oscar.c Wed Dec 15 01:53:33 2004 +0000 @@ -380,7 +380,7 @@ } else if (!strcmp(encoding, "iso-8859-1") || !strcmp(encoding, "ISO-8859-1-Windows-3.1-Latin-1")) { - utf8 = g_convert(text, textlen, "UTF-8", "ISO-8859-1", NULL, NULL, NULL); + utf8 = g_convert(text, textlen, "UTF-8", "Windows-1252", NULL, NULL, NULL); } else if (!strcmp(encoding, "unicode-2-0")) { utf8 = g_convert(text, textlen, "UTF-8", "UCS-2BE", NULL, NULL, NULL);