comparison src/account.c @ 10743:279eee07dd42

[gaim-migrate @ 12345] The order of this is pretty important for remembering your password. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 27 Mar 2005 00:33:58 +0000
parents 4228b6d78506
children 3839df4f7074
comparison
equal deleted inserted replaced
10742:4228b6d78506 10743:279eee07dd42
565 565
566 /* Read the password */ 566 /* Read the password */
567 child = xmlnode_get_child(node, "password"); 567 child = xmlnode_get_child(node, "password");
568 if ((child != NULL) && ((data = xmlnode_get_data(child)) != NULL)) 568 if ((child != NULL) && ((data = xmlnode_get_data(child)) != NULL))
569 { 569 {
570 gaim_account_set_remember_password(ret, TRUE);
570 gaim_account_set_password(ret, data); 571 gaim_account_set_password(ret, data);
571 gaim_account_set_remember_password(ret, TRUE);
572 g_free(data); 572 g_free(data);
573 } 573 }
574 574
575 /* Read the alias */ 575 /* Read the alias */
576 child = xmlnode_get_child(node, "alias"); 576 child = xmlnode_get_child(node, "alias");