1
0
mirror of https://github.com/anope/anope.git synced 2026-06-24 20:26:39 +02:00

Misc cleanup of ns_sasl and sasl.h.

This commit is contained in:
Sadie Powell
2025-03-03 23:54:03 +00:00
parent c0c7046a6d
commit 34896cefe9
6 changed files with 73 additions and 63 deletions
+2 -2
View File
@@ -248,14 +248,14 @@ struct IRCDMessageEncap final
}
}
else if (params[1] == "SASL" && SASL::sasl && params.size() >= 6)
else if (params[1] == "SASL" && SASL::service && params.size() >= 6)
{
SASL::Message m;
m.source = params[2];
m.target = params[3];
m.type = params[4];
m.data.assign(params.begin() + 5, params.end());
SASL::sasl->ProcessMessage(m);
SASL::service->ProcessMessage(m);
}
return;