# HG changeset patch # User Sadrul Habib Chowdhury # Date 1189589848 0 # Node ID 656506d8935e76b092f773fe2ad1c35fccf0a121 # Parent 8c356223e182f346891d8c293f802c5208e7f5d9 Don't prompt for the password again if the user entered it once in the account window. diff -r 8c356223e182 -r 656506d8935e finch/gntaccount.c --- a/finch/gntaccount.c Wed Sep 12 09:29:35 2007 +0000 +++ b/finch/gntaccount.c Wed Sep 12 09:37:28 2007 +0000 @@ -169,7 +169,7 @@ purple_account_set_remember_password(account, gnt_check_box_get_checked(GNT_CHECK_BOX(dialog->remember))); value = gnt_entry_get_text(GNT_ENTRY(dialog->password)); - if (value && *value && purple_account_get_remember_password(account)) + if (value && *value) purple_account_set_password(account, value); else purple_account_set_password(account, NULL);