diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-03-15 21:15:36 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-03-15 21:15:36 +0000 |
commit | bbd4011020b1887fde10054c65fc9914b6350b18 (patch) | |
tree | 21271c0a2196704bfc945a7e38b5f224c07d363c /src/irc/irc-channel.c | |
parent | 15244320074a59d29446a39d23aa2c75a5dc35a5 (diff) | |
download | weechat-bbd4011020b1887fde10054c65fc9914b6350b18.zip |
Added nicks count for channel buffers
Diffstat (limited to 'src/irc/irc-channel.c')
-rw-r--r-- | src/irc/irc-channel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/irc/irc-channel.c b/src/irc/irc-channel.c index c2d2791fa..b7ffa3a5f 100644 --- a/src/irc/irc-channel.c +++ b/src/irc/irc-channel.c @@ -61,6 +61,7 @@ channel_new (t_irc_server *server, int channel_type, char *channel_name, new_channel->modes[sizeof (new_channel->modes) - 1] = '\0'; new_channel->limit = 0; new_channel->key = NULL; + new_channel->nicks_count = 0; new_channel->checking_away = 0; new_channel->nicks = NULL; new_channel->last_nick = NULL; |