diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-22 19:07:11 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-22 19:07:11 +0000 |
commit | a99a00d7c57986e21636fd3a3927bc0a46028dd3 (patch) | |
tree | c2f456187fdf7512204cc3bf6e744ecbe0f1ef55 /modules/protocol/ngircd.cpp | |
parent | 283137841f35478d59aea6d3023a54c23d13734a (diff) |
Fix sending the ngircd PASS handler.
Diffstat (limited to 'modules/protocol/ngircd.cpp')
-rw-r--r-- | modules/protocol/ngircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |