aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_sasl.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-11-10 23:14:21 +0000
committerGravatar Sadie Powell2020-11-10 23:14:21 +0000
commitba3dd9cedcca2f3cc6781f09410e3cf2cf696e43 (patch)
tree86fee6a331b262932973ac453169a1b566d60a2a /src/modules/m_sasl.cpp
parentConvert FIRST_MOD_RESULT_CUSTOM to a variadic function. (diff)
downloadinspircd++-ba3dd9cedcca2f3cc6781f09410e3cf2cf696e43.tar.gz
inspircd++-ba3dd9cedcca2f3cc6781f09410e3cf2cf696e43.tar.bz2
inspircd++-ba3dd9cedcca2f3cc6781f09410e3cf2cf696e43.zip
Convert FOREACH_MOD_CUSTOM to a variadic function.
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 c3cf8151a..eb019e994 100644
--- a/src/modules/m_sasl.cpp
+++ b/src/modules/m_sasl.cpp
@@ -171,7 +171,7 @@ static void SendSASL(LocalUser* user, const std::string& agent, char mode, const
if (!ServerInstance->PI->SendEncapsulatedData(sasl_target, "SASL", params))
{
- FOREACH_MOD_CUSTOM(*saslevprov, SASLEventListener, OnSASLAuth, (params));
+ saslevprov->Call(&SASLEventListener::OnSASLAuth, params);
}
}