diff options
author | Adam <Adam@anope.org> | 2016-02-13 14:16:29 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-02-13 14:16:29 -0500 |
commit | 4e2ca31cf5fc874ab928dc4d3735f4345a910d0d (patch) | |
tree | 1590da2a86eb164389dd781870648d8f3824f9a3 /modules/commands/cs_access.cpp | |
parent | addd2a1987dccff6ad4c8a68f5c48c9f850912ec (diff) |
Rewrite access path system to be simplier and use recursion
Show where access is "from" in chanserv/status
Diffstat (limited to 'modules/commands/cs_access.cpp')
-rw-r--r-- | modules/commands/cs_access.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_access.cpp b/modules/commands/cs_access.cpp index 543082a2d..6e9b79c6a 100644 --- a/modules/commands/cs_access.cpp +++ b/modules/commands/cs_access.cpp @@ -370,7 +370,7 @@ class CommandCSAccess : public Command if (ci->c) for (Channel::ChanUserList::const_iterator cit = ci->c->users.begin(), cit_end = ci->c->users.end(); cit != cit_end; ++cit) { - ChanAccess::Path p; + ChannelInfo *p; if (access->Matches(cit->second->user, cit->second->user->Account(), p)) timebuf = "Now"; } @@ -407,7 +407,7 @@ class CommandCSAccess : public Command if (ci->c) for (Channel::ChanUserList::const_iterator cit = ci->c->users.begin(), cit_end = ci->c->users.end(); cit != cit_end; ++cit) { - ChanAccess::Path p; + ChannelInfo *p; if (access->Matches(cit->second->user, cit->second->user->Account(), p)) timebuf = "Now"; } |