diff options
| author | Marius Halden <marius.h@lden.org> | 2016-04-12 13:00:00 +0200 |
|---|---|---|
| committer | Marius Halden <marius.h@lden.org> | 2016-05-07 14:31:03 +0200 |
| commit | a7e12e930adceb0d058400ca5e5616d69747f4d0 (patch) | |
| tree | 808cb107e0ef91254495c82629e6a1e0f7091536 /irc.h | |
| parent | aaf30d6cdb11667ccf8f1eeb523e81272fa8066c (diff) | |
Add support for multiple accounts in set 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
@@ -241,7 +241,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]; }; |
