aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ldapauth.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/m_ldapauth.cpp
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_ldapauth.cpp')
-rw-r--r--src/modules/m_ldapauth.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_ldapauth.cpp b/src/modules/m_ldapauth.cpp
index 96704e2e3..7d38250bd 100644
--- a/src/modules/m_ldapauth.cpp
+++ b/src/modules/m_ldapauth.cpp
@@ -99,7 +99,7 @@ class BindInterface final
}
}
- public:
+public:
BindInterface(Module* c, const std::string& p, const std::string& u, const std::string& dn)
: LDAPInterface(c)
, provider(p)
@@ -213,7 +213,7 @@ class SearchInterface final
const std::string provider;
const std::string uid;
- public:
+public:
SearchInterface(Module* c, const std::string& p, const std::string& u)
: LDAPInterface(c), provider(p), uid(u)
{
@@ -269,7 +269,7 @@ class AdminBindInterface final
const std::string base;
const std::string what;
- public:
+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)
{