# HG changeset patch # User Elliott Sales de Andrade # Date 1247424477 0 # Node ID 708c7edba73b0cc4027e853651ae8e9fe245daad # Parent 3dcc42d3cc1238964644859f244ee9d61c3585d3 If the error number is unknown, the error message should mention it, since the debug log does not print this secure request for Yahoo!. diff -r 3dcc42d3cc12 -r 708c7edba73b libpurple/protocols/yahoo/libymsg.c --- a/libpurple/protocols/yahoo/libymsg.c Sun Jul 12 07:33:06 2009 +0000 +++ b/libpurple/protocols/yahoo/libymsg.c Sun Jul 12 18:47:57 2009 +0000 @@ -1825,7 +1825,7 @@ break; default: /* Unknown error! */ - error_reason = g_strdup(_("Unknown error")); + error_reason = g_strdup_printf(_("Unknown error: %d"), response_no); error = PURPLE_CONNECTION_ERROR_OTHER_ERROR; break; }