aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-17 19:32:43 -0400
committerTest_User <hax@andrewyu.org>2024-06-17 19:32:43 -0400
commita4cf844040d342d164b5e87baa6683e5110a5536 (patch)
tree74ef2657329cf9a0b00e79f8ec69a2ecf7b28bab
parent650bab769f7d07f8538d894a82ad092a5d345e88 (diff)
downloadhaxircd-a4cf844040d342d164b5e87baa6683e5110a5536.tar.gz
haxircd-a4cf844040d342d164b5e87baa6683e5110a5536.zip
Fix missing space
-rw-r--r--protocols/inspircd2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/inspircd2.c b/protocols/inspircd2.c
index 0ae466c..a919ac0 100644
--- a/protocols/inspircd2.c
+++ b/protocols/inspircd2.c
@@ -1175,7 +1175,7 @@ int inspircd2_protocol_handle_squit(struct string source, size_t argc, struct st
struct server_info *a = get_table_index(server_list, source);
struct server_info *b = get_table_index(server_list, argv[0]);
- if (!a || !b) { // Maybe we already RSQUIT it or smth
+ if (!a || !b) {
WRITES(2, STRING("[InspIRCd v2] Invalid SQUIT recieved! (Unknown source or target)\r\n"));
return -1;
}
@@ -1219,7 +1219,7 @@ int inspircd2_protocol_handle_rsquit(struct string source, size_t argc, struct s
networks[next->net].send(next->handle, argv[1]);
networks[next->net].send(next->handle, STRING("\n"));
} else {
- networks[next->net].send(next->handle, STRING(":\n"));
+ networks[next->net].send(next->handle, STRING(" :\n"));
}
}
}