aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ldapauth.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-12-23 21:28:04 +0000
committerGravatar Sadie Powell2021-12-23 21:34:53 +0000
commit6282e1f28716b4a9beae52779119cf75373e3ee4 (patch)
tree5431efb60b50d1249af5980a8389d511d0c760f1 /src/modules/m_ldapauth.cpp
parentFix an unintentionally inverted condition in the dnsbl module. (diff)
Promote ExtensionItem::ExtensibleType to a top level enum class.
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 649863175..489500bc9 100644
--- a/src/modules/m_ldapauth.cpp
+++ b/src/modules/m_ldapauth.cpp
@@ -315,8 +315,8 @@ public:
ModuleLDAPAuth()
: Module(VF_VENDOR, "Allows connecting users to be authenticated against an LDAP database.")
, LDAP(this, "LDAP")
- , ldapAuthed(this, "ldapauth", ExtensionItem::EXT_USER)
- , ldapVhost(this, "ldapauth_vhost", ExtensionItem::EXT_USER)
+ , ldapAuthed(this, "ldapauth", ExtensionType::USER)
+ , ldapVhost(this, "ldapauth_vhost", ExtensionType::USER)
{
me = this;
authed = &ldapAuthed;