1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 02:53:13 +02:00

Reworked live SQL support yet again

This commit is contained in:
Adam
2012-04-23 05:08:26 -04:00
parent 63c639e108
commit 573e49a7ea
172 changed files with 2517 additions and 2217 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ class CommandNSAList : public Command
if (params.size() && u->IsServicesOper())
nick = params[0];
NickAlias *na = findnick(nick);
const NickAlias *na = findnick(nick);
if (!na)
{
@@ -45,7 +45,7 @@ class CommandNSAList : public Command
source.Reply(_("Channels that \002%s\002 has access on:"), na->nick.c_str());
for (registered_channel_map::const_iterator it = RegisteredChannelList.begin(), it_end = RegisteredChannelList.end(); it != it_end; ++it)
for (registered_channel_map::const_iterator it = RegisteredChannelList->begin(), it_end = RegisteredChannelList->end(); it != it_end; ++it)
{
ChannelInfo *ci = it->second;
ListFormatter::ListEntry entry;