summaryrefslogtreecommitdiff
path: root/message.c
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2024-07-17 21:55:01 +0100
committerLuke Bratch <luke@bratch.co.uk>2024-07-17 21:55:01 +0100
commite4f9bef0b48445363d40898daa86469f21efa7c3 (patch)
tree7834db8d8cd9d8ccb6c035e78d0105938aee4f59 /message.c
parent12bba1d2e5c1c3729ad01c316bd730077ff9737c (diff)
Correct replay comment in message.c.
Diffstat (limited to 'message.c')
-rw-r--r--message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/message.c b/message.c
index 07292be..8284268 100644
--- a/message.c
+++ b/message.c
@@ -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);