aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_sasl.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-01-11 00:37:09 +0000
committerGravatar Sadie Powell2023-01-11 00:56:10 +0000
commitb7b72521a7066f7694fdcc78702936fae4b11894 (patch)
tree2ecc424d56526cb8e8cd0e846a285c53628ae385 /src/modules/m_sasl.cpp
parentQualify auto correctly in all cases. (diff)
Fix calling various static functions through a type instance.
Diffstat (limited to 'src/modules/m_sasl.cpp')
-rw-r--r--src/modules/m_sasl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_sasl.cpp b/src/modules/m_sasl.cpp
index 6946ec9ae..89bd404f2 100644
--- a/src/modules/m_sasl.cpp
+++ b/src/modules/m_sasl.cpp
@@ -252,7 +252,7 @@ public:
else if (msg[2] == "D")
{
this->state = SASL_DONE;
- this->result = this->GetSaslResult(msg[3]);
+ this->result = GetSaslResult(msg[3]);
}
else if (msg[2] == "M")
this->user->WriteNumeric(RPL_SASLMECHS, msg[3], "are available SASL mechanisms");