diff options
author | miwob <michael@wobst.at> | 2015-10-25 17:42:33 +0100 |
---|---|---|
committer | Adam <Adam@anope.org> | 2015-12-13 19:48:22 -0500 |
commit | 99282e65a6d5904e0fb7c5735d41892cafeda1f5 (patch) | |
tree | c48c9b94aadb6c742c1e71b0b4711100b5680a61 /modules/protocol/hybrid.cpp | |
parent | d07e60b3da288a56c5e0355be51a4a99e9865b6f (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 dd2d7592e..f6a8feeab 100644 --- a/modules/protocol/hybrid.cpp +++ b/modules/protocol/hybrid.cpp @@ -213,7 +213,7 @@ class HybridProto : public IRCDProto Anope::string modes = "+" + u->GetModes(); UplinkSocket::Message(Me) << "UID " << u->nick << " 1 " << u->timestamp << " " << modes << " " - << u->GetIdent() << " " << u->host << " 0 " << u->GetUID() << " * :" << u->realname; + << u->GetIdent() << " " << u->host << " 0.0.0.0 " << u->GetUID() << " * :" << u->realname; } void SendEOB() anope_override |