# HG changeset patch # User Mark Doliner # Date 1245396049 0 # Node ID 0a8129263401e63bd508d74cd39080d6b5a64904 # Parent c4f0e47c7bedef6812ffa9ec2fb95869e32341d2 Show a friendlier error message on myspace when your username or password is wrong. This string matches the one in novell. I think we may be inconsistent with whether our error message strings end in periods diff -r c4f0e47c7bed -r 0a8129263401 libpurple/protocols/myspace/myspace.c --- a/libpurple/protocols/myspace/myspace.c Fri Jun 19 07:13:20 2009 +0000 +++ b/libpurple/protocols/myspace/myspace.c Fri Jun 19 07:20:49 2009 +0000 @@ -1834,6 +1834,9 @@ /* Replace full_errmsg. */ g_free(full_errmsg); full_errmsg = suggestion; + } else { + g_free(full_errmsg); + full_errmsg = g_strdup(_("Incorrect username or password")); } #endif break;