From a99a00d7c57986e21636fd3a3927bc0a46028dd3 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 22 Feb 2024 19:07:11 +0000 Subject: [PATCH] Fix sending the ngircd PASS handler. --- modules/protocol/ngircd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/protocol/ngircd.cpp b/modules/protocol/ngircd.cpp index 3c80fecc6..6ec27ed6d 100644 --- a/modules/protocol/ngircd.cpp +++ b/modules/protocol/ngircd.cpp @@ -66,7 +66,7 @@ public: void SendConnect() override { - Uplink::Send("PASS", Config->Uplinks[Anope::CurrentUplink].password, "0210-IRC+", "Anope|" + Anope::VersionShort(), "CLHMSo P"); + Uplink::Send("PASS", Config->Uplinks[Anope::CurrentUplink].password, "0210-IRC+", "Anope|" + Anope::VersionShort() + ":CLHMSo P"); /* Make myself known to myself in the serverlist */ SendServer(Me);