summaryrefslogtreecommitdiff
path: root/functions.c
diff options
context:
space:
mode:
Diffstat (limited to 'functions.c')
-rw-r--r--functions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.c b/functions.c
index 6bd8a9c..917f688 100644
--- a/functions.c
+++ b/functions.c
@@ -873,7 +873,7 @@ int channelindex(struct channel *channels, int maxchannelcount, char *name) {
return -1;
}
-// Send the requested number of lines of replay log to the requested client.
+// Send the requested number of seconds worth of replay log lines to the requested client.
// 'sourcefd' is the client to send to, and 'replayseconds' is the number of
// seconds of replay log to replay.
// Returns 1 for success or 0 for failure.
@@ -1033,7 +1033,7 @@ int doautoreplay(int sourcefd, struct client *clients, struct settings *settings
return 1;
}
- // If replaymode = "lastchange" then don't handle this here, it is done when the client registers its client code
+ // If replaymode = "perclient" then don't handle this here, it is done when the client registers its client code
if (!strncmp(settings->replaymode, "perclient", strlen("perclient"))) {
return 1;
}