# HG changeset patch # User Mark Doliner # Date 1200293054 0 # Node ID 06c58cffd4c4378e22f1467b14e61610472fe647 # Parent 32992e2526e4da2d21748e36a4dd236c344a26f3 I forgot that we're supposed to be using g_strerror() to guarantee a UTF-8 error message. My bad diff -r 32992e2526e4 -r 06c58cffd4c4 libpurple/protocols/oscar/oscar.c --- a/libpurple/protocols/oscar/oscar.c Mon Jan 14 06:32:16 2008 +0000 +++ b/libpurple/protocols/oscar/oscar.c Mon Jan 14 06:44:14 2008 +0000 @@ -1547,7 +1547,7 @@ if (result < 0) purple_debug_error("oscar", "Error writing %" G_GSIZE_FORMAT " bytes to fetch AIM hash data: %s\n", - strlen(buf), strerror(errno)); + strlen(buf), g_strerror(errno)); else purple_debug_error("oscar", "Tried to write %" G_GSIZE_FORMAT " bytes to fetch AIM hash data but "