aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorMarius Halden <marius.h@lden.org>2016-04-12 13:00:00 +0200
committerMarius Halden <marius.h@lden.org>2016-04-12 17:03:28 +0200
commit2b6f481a4e1bac54de7dc6a9a5444af9180babb0 (patch)
treeb4a6fe3c413f44e8feb5ee80df3b8c4bf4e7c22e /irc.h
parentc9603a38774fb118d4aaa96e170674412ed7328a (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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.h b/irc.h
index 2e0cc3d5..e2f69987 100644
--- a/irc.h
+++ b/irc.h
@@ -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];
};