aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-07-23 23:16:27 -0400
committerTest_User <hax@andrewyu.org>2024-07-23 23:16:38 -0400
commit921f31231c4b88a4176b6b349d5b2fccca2b25fa (patch)
tree75ac5e272d211904749108ef0797fd0c6d235c4d
parent61ed760b39e3f6dc8ed1f07f5853a1b20890159b (diff)
downloadhaxircd-921f31231c4b88a4176b6b349d5b2fccca2b25fa.tar.gz
haxircd-921f31231c4b88a4176b6b349d5b2fccca2b25fa.zip
Fix SERVER introductions
-rw-r--r--protocols/inspircd3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/inspircd3.c b/protocols/inspircd3.c
index bef4a80..466d3d2 100644
--- a/protocols/inspircd3.c
+++ b/protocols/inspircd3.c
@@ -1052,7 +1052,7 @@ void inspircd3_protocol_introduce_servers_to_inner(size_t net, void *handle, str
networks[net].send(handle, source);
networks[net].send(handle, STRING(" SERVER "));
networks[net].send(handle, target->name);
- networks[net].send(handle, STRING(" * 0 "));
+ networks[net].send(handle, STRING(" "));
networks[net].send(handle, target->sid);
networks[net].send(handle, STRING(" :"));
networks[net].send(handle, target->fullname);
@@ -1081,7 +1081,7 @@ void inspircd3_protocol_introduce_servers_to(size_t net, void *handle) {
networks[net].send(handle, SID);
networks[net].send(handle, STRING(" SERVER "));
networks[net].send(handle, target->name);
- networks[net].send(handle, STRING(" * 0 "));
+ networks[net].send(handle, STRING(" "));
networks[net].send(handle, target->sid);
networks[net].send(handle, STRING(" :"));
networks[net].send(handle, target->fullname);