diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-10 12:26:09 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-10 12:26:09 +0000 |
commit | 1fd0249076b85eef80a41a30b57cc47bc2a2ded2 (patch) | |
tree | d66b3c52395097d3ac99ad08be0ece9fa0fb4ecc /src/modules/cs_tban.c | |
parent | e7a6661baa7ff8bffce9e18a45d5ea4a521347e1 (diff) |
NS_VERBOTEN -> NS_FORBIDDEN, CS_VERBOTEN -> CS_FORBIDDEN, etc.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1973 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/cs_tban.c')
-rw-r--r-- | src/modules/cs_tban.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/cs_tban.c b/src/modules/cs_tban.c index 4b7994bfc..d8834c156 100644 --- a/src/modules/cs_tban.c +++ b/src/modules/cs_tban.c @@ -210,7 +210,7 @@ int canBanUser(Channel * c, User * u, User * u2) int ok = 0; if (!(ci = c->ci)) notice_lang(s_ChanServ, u, CHAN_X_NOT_REGISTERED, c->name); - else if (ci->flags & CI_VERBOTEN) + else if (ci->flags & CI_FORBIDDEN) notice_lang(s_ChanServ, u, CHAN_X_FORBIDDEN, c->name); else if (!check_access(u, ci, CA_BAN)) notice_lang(s_ChanServ, u, ACCESS_DENIED); |