diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-18 23:34:32 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-18 23:34:32 +0000 |
commit | e11b5b5acedaa0fdd73394e6277ca0ae39f8e4c7 (patch) | |
tree | 380694631fb85b75f174db13f13a791b27076a4f /src/core/cs_access.c | |
parent | 12cc6334576c61933383783e94a7b12c818b080b (diff) |
Patch from DP, converting all match calls and removing old match method.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2111 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/cs_access.c')
-rw-r--r-- | src/core/cs_access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cs_access.c b/src/core/cs_access.c index ec58b75ea..d921be7b5 100644 --- a/src/core/cs_access.c +++ b/src/core/cs_access.c @@ -335,7 +335,7 @@ class CommandCSAccess : public Command } else { for (i = 0; i < ci->accesscount; i++) { if (nick && ci->access[i].nc - && !match_wild_nocase(nick, ci->access[i].nc->display)) + && !Anope::Match(ci->access[i].nc->display, nick, false)) continue; access_list(u, i, ci, &sent_header); } |