diff options
| author | 2020-11-10 23:14:21 +0000 | |
|---|---|---|
| committer | 2020-11-10 23:14:21 +0000 | |
| commit | ba3dd9cedcca2f3cc6781f09410e3cf2cf696e43 (patch) | |
| tree | 86fee6a331b262932973ac453169a1b566d60a2a /src/modules/m_sasl.cpp | |
| parent | Convert FIRST_MOD_RESULT_CUSTOM to a variadic function. (diff) | |
| download | inspircd++-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.cpp | 2 |
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); } } |
