aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);