Revision: 17937
http://svn.sourceforge.net/gaim/?rev=17937&view=rev
Author: evands
Date: 2006-12-09 21:55:02 -0800 (Sat, 09 Dec 2006)
Log Message:
-----------
Pass the password for the account, if one has been specified, to gaim_connection_new() when doing an account registration request. This allows autofilling of the password field if a subsequent dialogue is displayed (as with Jabber).
Modified Paths:
--------------
trunk/libgaim/account.c
Modified: trunk/libgaim/account.c
===================================================================
--- trunk/libgaim/account.c 2006-12-10 05:33:44 UTC (rev 17936)
+++ trunk/libgaim/account.c 2006-12-10 05:55:02 UTC (rev 17937)
@@ -898,7 +898,7 @@
gaim_debug_info("account", "Registering account %s\n",
gaim_account_get_username(account));
- gaim_connection_new(account, TRUE, NULL);
+ gaim_connection_new(account, TRUE, gaim_account_get_password(account));
}
static void
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|