diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-11-21 19:34:59 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-11-21 19:34:59 +0000 |
commit | 09d4922d3740eb0ad2e42e02ca5d57f03b263eab (patch) | |
tree | 8deb49d26bf6c54db4330c61711bac8429ea4d7b /protocols/account.c | |
parent | bdedc148f84406a4715a1e668ea767927740c790 (diff) |
Be clearer about password settings being intentionally hidden (and not
really empty). Bug #657 and confusing BitlBee users since probably 2002.
Diffstat (limited to 'protocols/account.c')
-rw-r--r-- | protocols/account.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/account.c b/protocols/account.c index de5f9bd4..12831531 100644 --- a/protocols/account.c +++ b/protocols/account.c @@ -63,7 +63,7 @@ account_t *account_add( bee_t *bee, struct prpl *prpl, char *user, char *pass ) s->flags |= ACC_SET_NOSAVE; /* Just for bw compatibility! */ s = set_add( &a->set, "password", NULL, set_eval_account, a ); - s->flags |= ACC_SET_NOSAVE | SET_NULL_OK; + s->flags |= ACC_SET_NOSAVE | SET_NULL_OK | SET_PASSWORD; s = set_add( &a->set, "tag", NULL, set_eval_account, a ); s->flags |= ACC_SET_NOSAVE; |