# HG changeset patch # User Elliott Sales de Andrade # Date 1247424477 0 # Node ID 8fbde7f9d6b839f20b2b1e8c5c8cb4896c0b1eed # Parent 9d4cc577fe262f549eb28901d1cbbf7fd7d53009 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 9d4cc577fe26 -r 8fbde7f9d6b8 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; }