diff options
Diffstat (limited to 'blabouncer.c')
-rw-r--r-- | blabouncer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blabouncer.c b/blabouncer.c index eaa39c6..e839477 100644 --- a/blabouncer.c +++ b/blabouncer.c @@ -1055,7 +1055,7 @@ int processircmessage(SSL *server_ssl, char *str, int source, struct client *cli if (clients[i].pendingwho == 1 && clients[i].fd) { sendtoclient(clients[i].fd, str, clients, settings); // And clear the pending flag if it's 315 (RPL_ENDOFWHO) - if (strncmp(tokens[1], "329", strlen(tokens[1])) == 0) { + if (strncmp(tokens[1], "315", strlen(tokens[1])) == 0) { clients[i].pendingwho = 0; } } |