summaryrefslogtreecommitdiff
path: root/modules/protocol/unrealircd.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-02-26 17:23:15 +0000
committerSadie Powell <sadie@witchery.services>2024-02-26 17:23:15 +0000
commitd914febbec6808a02f999e57394a6355ead83dc7 (patch)
tree4f561df52393299f2eb926bb1d6ada94b0cc8052 /modules/protocol/unrealircd.cpp
parent2962a0be8c8f0d986f4c5ad2cdc425139ca719e3 (diff)
Fix a typo in UnrealIRCd's SendGlobops.
Diffstat (limited to 'modules/protocol/unrealircd.cpp')
-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 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