diff options
| author | 2022-12-01 05:14:58 +0000 | |
|---|---|---|
| committer | 2022-12-01 05:25:01 +0000 | |
| commit | 45e56e5ee1bdb9e169be957e21a4f7b536e417ff (patch) | |
| tree | 72642028744c278ca476e656933716ac9f7357b8 /src/modules/m_ldapauth.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
| download | inspircd++-45e56e5ee1bdb9e169be957e21a4f7b536e417ff.tar.gz inspircd++-45e56e5ee1bdb9e169be957e21a4f7b536e417ff.tar.bz2 inspircd++-45e56e5ee1bdb9e169be957e21a4f7b536e417ff.zip | |
Yet more stylistic fixes.
Diffstat (limited to 'src/modules/m_ldapauth.cpp')
| -rw-r--r-- | src/modules/m_ldapauth.cpp | 10 |
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) { } |
