Mercurial > pidgin.yaz
changeset 19938:656506d8935e
Don't prompt for the password again if the user entered it once in the account window.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Wed, 12 Sep 2007 09:37:28 +0000 |
parents | 8c356223e182 |
children | 8f8421bda08d |
files | finch/gntaccount.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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);