From a4cf844040d342d164b5e87baa6683e5110a5536 Mon Sep 17 00:00:00 2001 From: Test_User Date: Mon, 17 Jun 2024 19:32:43 -0400 Subject: Fix missing space --- protocols/inspircd2.c | 4 ++-- 1 file 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")); } } } -- cgit v1.2.3