diff options
author | Marius Halden <marius.h@lden.org> | 2016-04-12 13:00:00 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2016-04-12 17:03:28 +0200 |
commit | 2b6f481a4e1bac54de7dc6a9a5444af9180babb0 (patch) | |
tree | b4a6fe3c413f44e8feb5ee80df3b8c4bf4e7c22e /irc.h | |
parent | c9603a38774fb118d4aaa96e170674412ed7328a (diff) |
Add support for multiple accounts in set accountset-account
The set account for control channels is now a comma separeted list of
accounts instead of just one. If the user changes the tag of an accounts
trough `account <id> set tag <new_tag>`, the account set will be updated
to reflect this change for all relevant channels. If an account is
removed trough `account <id> delete` it will be removed from the account
set for all relevant channels.
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -222,7 +222,7 @@ typedef enum { struct irc_control_channel { irc_control_channel_type_t type; struct bee_group *group; - struct account *account; + GSList *account; struct prpl *protocol; char modes[5]; }; |