aboutsummaryrefslogtreecommitdiff
path: root/protocols/inspircd2.c
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/inspircd2.c')
-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"));
}
}
}