From f6adc2f6b09031d746ed9caaadb287353711c20e Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 20 Jun 2014 21:55:47 +1000 Subject: [PATCH] Trivial doc changes --- src/stratifier.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stratifier.c b/src/stratifier.c index a5225643..d91c3c46 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -2007,7 +2007,7 @@ static void ckdbq_process(ckpool_t *ckp, ckdb_msg_t *data) static const double nonces = 4294967296; -/* Called every 15 seconds, we send the updated stats to ckdb of those users +/* Called every 20 seconds, we send the updated stats to ckdb of those users * who have gone 10 minutes between updates. This ends up staggering stats to * avoid floods of stat data coming at once. */ static void update_userstats(ckpool_t *ckp) @@ -2035,7 +2035,7 @@ static void update_userstats(ckpool_t *ckp) * the last 10 minutes */ if (client->idle) continue; - /* Select clients using a mask to return each users's stats once + /* Select clients using a mask to return each user's stats once * every ~10 minutes */ cycle_mask = client->user_id & 0x1f; if (cycle_mask != stats.userstats_cycle)