diff options
author | Luke Bratch <luke@bratch.co.uk> | 2025-08-09 13:25:03 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2025-08-09 13:25:03 +0100 |
commit | 0e7f232b3d5ecb484d9d91bdd7e4b6d4e7791585 (patch) | |
tree | 0525be83c0dba635293abbf99d951c4cad4ef0e1 /message.c | |
parent | 5d52ed923b122a4e6998ae9a3501f41ff4c06bc3 (diff) |
Correctly process 353 RPL_NAMREPLYs for secret and private channels.
Diffstat (limited to 'message.c')
-rw-r--r-- | message.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -384,7 +384,7 @@ int processservermessage(SSL *server_ssl, char *str, struct client *clients, int // Update our local channels struct with all nicks from this RPL_NAMREPLY if (!addnamereplytochannel(str, channels, ircdstate->maxchannelcount)) { - debugprint(DEBUG_CRIT, "Failed to add RPL_NAMREPLY to channels.\n"); + debugprint(DEBUG_CRIT, "processservermessage(): Failed to add RPL_NAMREPLY to channels.\n"); } return 1; |