aboutsummaryrefslogtreecommitdiffstats
path: root/irc_channel.c
diff options
context:
space:
mode:
authorMarius Halden <marius.h@lden.org>2016-04-12 00:37:39 +0200
committerMarius Halden <marius.h@lden.org>2016-05-07 14:31:03 +0200
commit1ce076a9040e9637876832084438af566e025600 (patch)
tree41b8037b196991b2933433c8093a15f07294f4cf /irc_channel.c
parent0f56b8dc9e8ddbec1cf7cacd35a782cbfbd6186c (diff)
Fix some errors created when changing set account to GSList
Diffstat (limited to 'irc_channel.c')
-rw-r--r--irc_channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_channel.c b/irc_channel.c
index 739360de..f66cf654 100644
--- a/irc_channel.c
+++ b/irc_channel.c
@@ -883,7 +883,7 @@ static char *set_eval_by_account(set_t *set, char *value)
if (!(acc = account_get(ic->irc->b, *account))) {
goto fail;
} else {
- new_acc = g_slist_append(new_acc, account);
+ new_acc = g_slist_append(new_acc, acc);
}
}