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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user