diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-04-16 20:28:21 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-04-16 20:28:21 +0000 |
commit | 723e3f2ce02865870b2a6d7ccb999eb693ac87ad (patch) | |
tree | 1f2f8babc7227cd9a7a0c074cf1163885e35b233 /src/modules/cs_enforce.c | |
parent | 89883ac3257f4930cb99910bb61195af52e2bb8a (diff) |
PERMISSION_DENIED -> ACCESS_DENIED string.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2281 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/cs_enforce.c')
-rw-r--r-- | src/modules/cs_enforce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/cs_enforce.c b/src/modules/cs_enforce.c index ae2af3453..440366709 100644 --- a/src/modules/cs_enforce.c +++ b/src/modules/cs_enforce.c @@ -192,7 +192,7 @@ class CommandCSEnforce : public Command else if (ci->flags & CI_FORBIDDEN) notice_lang(s_ChanServ, u, CHAN_X_FORBIDDEN, ci->name); else if (!check_access(u, ci, CA_AKICK)) - notice_lang(s_ChanServ, u, PERMISSION_DENIED); + notice_lang(s_ChanServ, u, ACCESS_DENIED); else { if (!what || !stricmp(what, "SET")) |