# HG changeset patch # User John Bailey # Date 1247791079 0 # Node ID d53d082f16414ef6ae5ced5c99fa54eb99543680 # Parent b448b259e3cf5f6ca51ae4989d1492f1c81c4db7 Display an error message when we receive error code 1013 from the Yahoo! logon process. I borrowed this string from MSN and intend to change it after the release. diff -r b448b259e3cf -r d53d082f1641 libpurple/protocols/yahoo/libymsg.c --- a/libpurple/protocols/yahoo/libymsg.c Thu Jul 16 22:56:37 2009 +0000 +++ b/libpurple/protocols/yahoo/libymsg.c Fri Jul 17 00:37:59 2009 +0000 @@ -2087,6 +2087,10 @@ msg = g_strdup(_("Your account is locked, please log in to the Yahoo! website.")); reason = PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED; break; + case 1013: + msg = g_strdup(_("Invalid username")); + reason = PURPLE_CONNECTION_ERROR_INVALID_USERNAME; + break; default: msg = g_strdup_printf(_("Unknown error number %d. Logging into the Yahoo! website may fix this."), err); }