aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_ldapauth.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_ldapauth.cpp')
-rw-r--r--src/modules/m_ldapauth.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/modules/m_ldapauth.cpp b/src/modules/m_ldapauth.cpp
index d5577e86d..1d3763b0b 100644
--- a/src/modules/m_ldapauth.cpp
+++ b/src/modules/m_ldapauth.cpp
@@ -215,7 +215,9 @@ class SearchInterface final
public:
SearchInterface(Module* c, const std::string& p, const std::string& u)
- : LDAPInterface(c), provider(p), uid(u)
+ : LDAPInterface(c)
+ , provider(p)
+ , uid(u)
{
}
@@ -271,7 +273,11 @@ class AdminBindInterface final
public:
AdminBindInterface(Module* c, const std::string& p, const std::string& u, const std::string& b, const std::string& w)
- : LDAPInterface(c), provider(p), uuid(u), base(b), what(w)
+ : LDAPInterface(c)
+ , provider(p)
+ , uuid(u)
+ , base(b)
+ , what(w)
{
}