aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/extra/m_ldapauth.cpp
diff options
context:
space:
mode:
authorGravatar w00t2008-08-22 17:07:33 +0000
committerGravatar w00t2008-08-22 17:07:33 +0000
commit784105556de045a2250f68646ec5fd1caa3e1a73 (patch)
tree5a42d3dd1fed8b10d3c1f9873eb5e2e518b87eba /src/modules/extra/m_ldapauth.cpp
parentMatch conversion stuff. (diff)
downloadinspircd++-784105556de045a2250f68646ec5fd1caa3e1a73.tar.gz
inspircd++-784105556de045a2250f68646ec5fd1caa3e1a73.tar.bz2
inspircd++-784105556de045a2250f68646ec5fd1caa3e1a73.zip
Nuke last references to MatchText
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10217 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/m_ldapauth.cpp')
-rw-r--r--src/modules/extra/m_ldapauth.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_ldapauth.cpp b/src/modules/extra/m_ldapauth.cpp
index 211880f05..02d6387eb 100644
--- a/src/modules/extra/m_ldapauth.cpp
+++ b/src/modules/extra/m_ldapauth.cpp
@@ -113,7 +113,7 @@ public:
virtual int OnUserRegister(User* user)
{
- if ((!allowpattern.empty()) && (ServerInstance->MatchText(user->nick,allowpattern)))
+ if ((!allowpattern.empty()) && (InspIRCd::Match(user->nick,allowpattern)))
{
user->Extend("ldapauthed");
return 0;