aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_sasl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_sasl.cpp')
-rw-r--r--src/modules/m_sasl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_sasl.cpp b/src/modules/m_sasl.cpp
index e78d7f1db..f1a32f5a0 100644
--- a/src/modules/m_sasl.cpp
+++ b/src/modules/m_sasl.cpp
@@ -350,7 +350,7 @@ class CommandAuthenticate : public SplitCommand
return CmdResult::FAILURE;
}
- SaslAuthenticator *sasl = authExt.get(user);
+ SaslAuthenticator *sasl = authExt.Get(user);
if (!sasl)
authExt.set(user, new SaslAuthenticator(user, parameters[0], sslapi));
else if (sasl->SendClientMessage(parameters) == false) // IAL abort extension --nenolod
@@ -381,7 +381,7 @@ class CommandSASL : public Command
return CmdResult::FAILURE;
}
- SaslAuthenticator *sasl = authExt.get(target);
+ SaslAuthenticator *sasl = authExt.Get(target);
if (!sasl)
return CmdResult::FAILURE;