summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-02-06 19:01:10 +0000
committerSadie Powell <sadie@witchery.services>2025-02-06 19:01:10 +0000
commitabbb602463f05c77e695f15d63a323eddc242f7d (patch)
tree09a31b3ca2ebb3eb60bbb44bc0901e2334d9af40
parent86805a6b3b820d4424b4b6942dc3524568ae0dde (diff)
Fix SASL on UnrealIRCd.
-rw-r--r--modules/protocol/unrealircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unrealircd.cpp b/modules/protocol/unrealircd.cpp
index fa5f72f95..aed578c3e 100644
--- a/modules/protocol/unrealircd.cpp
+++ b/modules/protocol/unrealircd.cpp
@@ -403,7 +403,7 @@ private:
auto newparams = message.data;
newparams.insert(newparams.begin(), { distmask, message.target, message.type });
- Uplink::SendInternal({}, BotInfo::Find(message.source), "ENCAP", newparams);
+ Uplink::SendInternal({}, BotInfo::Find(message.source), "SASL", newparams);
}
void SendSVSLogin(const Anope::string &uid, NickAlias *na) override