summaryrefslogtreecommitdiff
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 869e0b558..97bb6ff88 100644
--- a/src/modules/m_sasl.cpp
+++ b/src/modules/m_sasl.cpp
@@ -70,7 +70,7 @@ class SaslAuthenticator
{
case SASL_INIT:
this->agent = msg[1];
- this->user->WriteServ("AUTHENTICATE %s", msg[4].c_str());
+ this->user->Write("AUTHENTICATE %s", msg[4].c_str());
this->state = SASL_COMM;
break;
case SASL_COMM:
@@ -78,7 +78,7 @@ class SaslAuthenticator
return this->state;
if (msg[3] != "D")
- this->user->WriteServ("AUTHENTICATE %s", msg[4].c_str());
+ this->user->Write("AUTHENTICATE %s", msg[4].c_str());
else
{
this->state = SASL_DONE;