diff options
author | Adam <Adam@anope.org> | 2011-08-09 01:55:34 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-09 01:55:34 -0400 |
commit | 776583a665fdc1b98b66266f6649865d27337a28 (patch) | |
tree | be07b292c7d307285b5afd78c5e816df8e2a71c5 /modules/commands/cs_getkey.cpp | |
parent | 91c3363c1578d24e70d0ed215d6aedc769076f08 (diff) |
Simiplied a bit of the access system
Diffstat (limited to 'modules/commands/cs_getkey.cpp')
-rw-r--r-- | modules/commands/cs_getkey.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_getkey.cpp b/modules/commands/cs_getkey.cpp index 4a6d62442..48d5cd2eb 100644 --- a/modules/commands/cs_getkey.cpp +++ b/modules/commands/cs_getkey.cpp @@ -35,7 +35,7 @@ class CommandCSGetKey : public Command } - if (!ci->HasPriv(u, CA_GETKEY) && !u->HasCommand("chanserv/chanserv/getkey")) + if (!ci->AccessFor(u).HasPriv(CA_GETKEY) && !u->HasCommand("chanserv/chanserv/getkey")) { source.Reply(ACCESS_DENIED); return; @@ -48,7 +48,7 @@ class CommandCSGetKey : public Command return; } - bool override = !ci->HasPriv(u, CA_GETKEY); + bool override = !ci->AccessFor(u).HasPriv(CA_GETKEY); Log(override ? LOG_OVERRIDE : LOG_COMMAND, u, this, ci); source.Reply(_("Key for channel \002%s\002 is \002%s\002."), chan.c_str(), key.c_str()); |