From: <the...@us...> - 2006-11-03 17:38:21
|
Revision: 17662 http://svn.sourceforge.net/gaim/?rev=17662&view=rev Author: thekingant Date: 2006-11-03 09:11:43 -0800 (Fri, 03 Nov 2006) Log Message: ----------- If an oscar account is unable to connect because the password is wrong, then set the password to the empty string. This might help address bug 1414151, "Too many steps to be able to re-enter a password." How do people feel about this? We could probably do it for MSN, too. Also, beta 5 on Sunday? Modified Paths: -------------- trunk/libgaim/protocols/oscar/oscar.c Modified: trunk/libgaim/protocols/oscar/oscar.c =================================================================== --- trunk/libgaim/protocols/oscar/oscar.c 2006-11-03 04:41:50 UTC (rev 17661) +++ trunk/libgaim/protocols/oscar/oscar.c 2006-11-03 17:11:43 UTC (rev 17662) @@ -1282,8 +1282,9 @@ gaim_connection_error(gc, _("Invalid screen name.")); break; case 0x05: - /* Incorrect nick/password */ + /* Incorrect password */ gc->wants_to_die = TRUE; + gaim_account_set_password(account, NULL); gaim_connection_error(gc, _("Incorrect password.")); break; case 0x11: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |