diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-05-29 09:18:19 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-05-29 09:18:19 +0200 |
commit | b36ed393886c6b6a8fec6397b37b555dd4922592 (patch) | |
tree | 369ba3df6c16eb3bcf22c813022dc0a3df489206 /src/plugins/irc/irc-channel.c | |
parent | f93eec488e1826d9fb1a49a8aecbaa6b4ab2647b (diff) | |
download | weechat-b36ed393886c6b6a8fec6397b37b555dd4922592.zip |
Fix bug with nick prefix '*' (chan founder) on some IRC servers (bug #29890)
Diffstat (limited to 'src/plugins/irc/irc-channel.c')
-rw-r--r-- | src/plugins/irc/irc-channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-channel.c b/src/plugins/irc/irc-channel.c index 74ba350c2..60362d44f 100644 --- a/src/plugins/irc/irc-channel.c +++ b/src/plugins/irc/irc-channel.c @@ -759,7 +759,7 @@ irc_channel_free (struct t_irc_server *server, struct t_irc_channel *channel) free (channel->modes); if (channel->key) free (channel->key); - irc_nick_free_all (channel); + irc_nick_free_all (server, channel); if (channel->away_message) free (channel->away_message); if (channel->pv_remote_nick_color) |