diff options
author | Luke Bratch <luke@bratch.co.uk> | 2024-07-17 21:55:01 +0100 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2024-07-17 21:55:01 +0100 |
commit | e4f9bef0b48445363d40898daa86469f21efa7c3 (patch) | |
tree | 7834db8d8cd9d8ccb6c035e78d0105938aee4f59 | |
parent | 12bba1d2e5c1c3729ad01c316bd730077ff9737c (diff) |
Correct replay comment in message.c.
-rw-r--r-- | message.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1123,7 +1123,7 @@ int processclientmessage(SSL *server_ssl, char *str, struct client *clients, int // Set the client as registered clients[clientindex].registered = 1; - // Catch the client up with the default number of seconds of replay + // Catch the client up using whichever replaymode is set if (!doautoreplay(sourcefd, clients, settings, ircdstate, channels)) { snprintf(outgoingmsg, MAXDATASIZE, "NOTICE %s :Unable to read replay log file!", ircdstate->ircnick); sendtoclient(sourcefd, outgoingmsg, clients, settings, 0); |