diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-26 17:23:15 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-26 17:23:15 +0000 |
commit | d914febbec6808a02f999e57394a6355ead83dc7 (patch) | |
tree | 4f561df52393299f2eb926bb1d6ada94b0cc8052 /modules/protocol/unrealircd.cpp | |
parent | 2962a0be8c8f0d986f4c5ad2cdc425139ca719e3 (diff) |
Fix a typo in UnrealIRCd's SendGlobops.
Diffstat (limited to 'modules/protocol/unrealircd.cpp')
-rw-r--r-- | modules/protocol/unrealircd.cpp | 2 |
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 |