From d914febbec6808a02f999e57394a6355ead83dc7 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 26 Feb 2024 17:23:15 +0000 Subject: [PATCH] Fix a typo in UnrealIRCd's SendGlobops. --- modules/protocol/unrealircd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/protocol/unrealircd.cpp b/modules/protocol/unrealircd.cpp index c75cd3b2f..03cc6aabb 100644 --- a/modules/protocol/unrealircd.cpp +++ b/modules/protocol/unrealircd.cpp @@ -315,7 +315,7 @@ private: void SendGlobops(const MessageSource &source, const Anope::string &buf) override { - Uplink::Send("SENDUMODE", 'o', "From " + source.GetName() + ": " < buf); + Uplink::Send("SENDUMODE", 'o', "From " + source.GetName() + ": " + buf); } void SendSWhois(const MessageSource &source, const Anope::string &who, const Anope::string &mask) override