aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_ldapauth.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2019-08-13 18:59:24 +0100
committerGravatar Sadie Powell2019-08-13 19:08:17 +0100
commiteeb6dcec601271badd27ad1c0558764ca5789d64 (patch)
treee5cde71a4cf061076a217a67d48b59830e84c223 /src/modules/m_ldapauth.cpp
parentRewrite and merge LocalStringExt, StringExtItem. (diff)
downloadinspircd++-eeb6dcec601271badd27ad1c0558764ca5789d64.tar.gz
inspircd++-eeb6dcec601271badd27ad1c0558764ca5789d64.tar.bz2
inspircd++-eeb6dcec601271badd27ad1c0558764ca5789d64.zip
Replace LocalIntExt with IntExtItem.
Diffstat (limited to 'src/modules/m_ldapauth.cpp')
-rw-r--r--src/modules/m_ldapauth.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_ldapauth.cpp b/src/modules/m_ldapauth.cpp
index 52b652f49..9162f17b8 100644
--- a/src/modules/m_ldapauth.cpp
+++ b/src/modules/m_ldapauth.cpp
@@ -31,7 +31,7 @@ namespace
{
Module* me;
std::string killreason;
- LocalIntExt* authed;
+ IntExtItem* authed;
bool verbose;
std::string vhost;
StringExtItem* vhosts;
@@ -296,7 +296,7 @@ class AdminBindInterface : public LDAPInterface
class ModuleLDAPAuth : public Module
{
dynamic_reference<LDAPProvider> LDAP;
- LocalIntExt ldapAuthed;
+ IntExtItem ldapAuthed;
StringExtItem ldapVhost;
std::string base;
std::string attribute;