diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-10-02 19:37:16 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-10-02 19:37:16 +0100 |
commit | 2385f7b944bb22acd85e6c089e509880a45a2cb1 (patch) | |
tree | 149c7005acbcc3aeb663661ed4b45ef7eef35ade /message.c | |
parent | be3913f22cc03a6d804d720fb0d3efcc337c4150 (diff) |
Try to make removenickfromallchannels() much faster when another user QUITs by ignoring unused channel indexes.
Diffstat (limited to 'message.c')
-rw-r--r-- | message.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -267,7 +267,7 @@ int processservermessage(SSL *server_ssl, char *str, struct client *clients, int if (strncmp(tokens[1], "QUIT", strlen(tokens[1])) == 0) { debugprint(DEBUG_FULL, "Server QUIT found and it is: %s with length %zd! Next token is '%s'.\n", tokens[0], strlen(tokens[0]), tokens[2]); - // And then send to all clients + // Tell all clients sendtoallclients(clients, str, sourcefd, settings); // Write to replay log if replay logging enabled |