comparison libpurple/protocols/yahoo/libymsg.c @ 27566:bd8b78d9573c

Don't break string freeze.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Mon, 13 Jul 2009 05:24:33 +0000
parents 708c7edba73b
children a12574d982a1
comparison
equal deleted inserted replaced
27560:708c7edba73b 27566:bd8b78d9573c
1823 error_reason = g_strdup(_("Username or password missing")); 1823 error_reason = g_strdup(_("Username or password missing"));
1824 error = PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED; 1824 error = PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED;
1825 break; 1825 break;
1826 default: 1826 default:
1827 /* Unknown error! */ 1827 /* Unknown error! */
1828 error_reason = g_strdup_printf(_("Unknown error: %d"), response_no); 1828 error_reason = g_strdup_printf(_("Unknown error (%d)"), response_no);
1829 error = PURPLE_CONNECTION_ERROR_OTHER_ERROR; 1829 error = PURPLE_CONNECTION_ERROR_OTHER_ERROR;
1830 break; 1830 break;
1831 } 1831 }
1832 purple_debug_error("yahoo", "Authentication error: %s\n", 1832 purple_debug_error("yahoo", "Authentication error: %s\n",
1833 error_reason); 1833 error_reason);