diff options
author | Adam <Adam@anope.org> | 2013-08-11 12:25:58 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-08-11 12:25:58 -0400 |
commit | 490601de3ac1c9096a336ba081d1f6cc4913c8b2 (patch) | |
tree | 23ea16f0c1e15e9d0e9d0e4a1bd2a78103eb408f /modules/protocol/charybdis.cpp | |
parent | c7aab50bffb68f49eeebc291a45caf6f8ef16445 (diff) |
Fix chghost on charybdis
Diffstat (limited to 'modules/protocol/charybdis.cpp')
-rw-r--r-- | modules/protocol/charybdis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/charybdis.cpp b/modules/protocol/charybdis.cpp index ae8a67c49..74e450d31 100644 --- a/modules/protocol/charybdis.cpp +++ b/modules/protocol/charybdis.cpp @@ -142,7 +142,7 @@ class CharybdisProto : public IRCDProto void SendVhost(User *u, const Anope::string &ident, const Anope::string &host) anope_override { - UplinkSocket::Message(Me) << "ENCAP * CHGHOST " << u->GetUID() << ": " << host; + UplinkSocket::Message(Me) << "ENCAP * CHGHOST " << u->GetUID() << " :" << host; } void SendVhostDel(User *u) anope_override |