summaryrefslogtreecommitdiff
path: root/modules/commands/cs_xop.cpp
diff options
context:
space:
mode:
authorThomas Fargeix <t.fargeix@gmail.com>2014-10-11 22:56:31 +0200
committerAdam <Adam@anope.org>2014-10-12 10:52:48 -0400
commit96583892c6a0bc48029348ddcf86b1afc5a9915d (patch)
treea232b6a1dcbc2a5b0ad839b9a14b9a85e6645549 /modules/commands/cs_xop.cpp
parent0991d4e1998c5a87c8deb3f9460685eed0212160 (diff)
Add a chanserv/access/list privilege
Replace the existing chanserv/access/list command access, only used in cs_xop, by a privilege with the same name. It which allows read-only access to cs_access, cs_flags, cs_xop and cs_akick, while the already-existing chanserv/access/modify privilege allows to modify them.
Diffstat (limited to 'modules/commands/cs_xop.cpp')
-rw-r--r--modules/commands/cs_xop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/cs_xop.cpp b/modules/commands/cs_xop.cpp
index 340369901..bf86c06ce 100644
--- a/modules/commands/cs_xop.cpp
+++ b/modules/commands/cs_xop.cpp
@@ -365,7 +365,7 @@ class CommandCSXOP : public Command
AccessGroup access = source.AccessFor(ci);
- if (!access.HasPriv("ACCESS_LIST") && !source.HasCommand("chanserv/access/list"))
+ if (!access.HasPriv("ACCESS_LIST") && !source.HasPriv("chanserv/access/list"))
{
source.Reply(ACCESS_DENIED);
return;