diff options
author | miwob <michael@wobst.at> | 2016-09-28 19:13:58 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-09-28 19:14:17 -0400 |
commit | c6153a8bd8c5d86e9d0eca1877e6ea8ab1eca9c1 (patch) | |
tree | 16c81a225167797a21f6871b42c708595b44fb31 /modules/protocol/hybrid.cpp | |
parent | 79c0e2f0c4e7cd0c6be19431e922bac08d508c1f (diff) |
hybrid.cpp:SendClientIntroduction(): use a valid IP address format. In the future ircd-hybrid will reject UID messages with invalid IP addresses
Diffstat (limited to 'modules/protocol/hybrid.cpp')
-rw-r--r-- | modules/protocol/hybrid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp index 8345b18d3..b551bc1cd 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -231,7 +231,7 @@ class HybridProto : public IRCDProto { Anope::string modes = "+" + u->GetModes(); - Uplink::Send(Me, "UID", u->nick, 1, u->timestamp, modes, u->GetIdent(), u->host, 0, u->GetUID(), "*", u->realname); + Uplink::Send(Me, "UID", u->nick, 1, u->timestamp, modes, u->GetIdent(), u->host, "0.0.0.0", u->GetUID(), "*", u->realname); } void SendEOB() override |