This commit is contained in:
Přemysl Eric Janouch 2014-07-18 01:03:21 +02:00
parent b2a4d38e8c
commit 353230b18b
1 changed files with 1 additions and 9 deletions

View File

@ -612,11 +612,7 @@ irc_send_lusers (struct client *c)
n_opers++;
}
int n_channels = 0;
struct str_map_iter iter;
str_map_iter_init (&iter, &c->ctx->channels);
while (str_map_iter_next (&iter))
n_channels++;
int n_channels = c->ctx->channels.len;
irc_send_reply (c, IRC_RPL_LUSERCLIENT,
n_users, n_services, 1 /* servers total */);
@ -753,13 +749,9 @@ static void
irc_handle_lusers (const struct irc_message *msg, struct client *c)
{
if (msg->params.len > 1 && !irc_is_this_me (c->ctx, msg->params.vector[1]))
{
irc_send_reply (c, IRC_ERR_NOSUCHSERVER, msg->params.vector[1]);
return;
}
else
irc_send_lusers (c);
}
static void