diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-15 12:42:13 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-15 12:42:13 +0000 |
commit | 753119c4a16f6dafacbeb3d98fe72133badca949 (patch) | |
tree | ac57504794ae2ff44a98207c77ef087d9a2a4c38 /modules/protocol/hybrid.cpp | |
parent | d996c3aa8fccb032332aa8e2ea12d07127cae969 (diff) |
Use consistent casing when referring to vhosts and vidents.
Diffstat (limited to 'modules/protocol/hybrid.cpp')
-rw-r--r-- | modules/protocol/hybrid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp index b060c4f43..0845938de 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -263,12 +263,12 @@ public: this->SendSQLineDel(&x); } - void SendVhost(User *u, const Anope::string &ident, const Anope::string &host) override + void SendVHost(User *u, const Anope::string &ident, const Anope::string &host) override { Uplink::Send("SVSHOST", u->GetUID(), u->timestamp, host); } - void SendVhostDel(User *u) override + void SendVHostDel(User *u) override { Uplink::Send("SVSHOST", u->GetUID(), u->timestamp, u->host); } |