summaryrefslogtreecommitdiff
path: root/lib/Zinternal.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Zinternal.c')
-rw-r--r--lib/Zinternal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Zinternal.c b/lib/Zinternal.c
index ace1a81..07cd342 100644
--- a/lib/Zinternal.c
+++ b/lib/Zinternal.c
@@ -145,9 +145,9 @@ find_or_insert_uid(ZUnique_Id_t *uid,
return 0;
}
- /* Age the uid buffer, discarding any uids older than the clock skew. */
+ /* Age the uid buffer, discarding any uids older than the time limit. */
time(&now);
- while (num && (now - buffer[start % size].t) > CLOCK_SKEW)
+ while (num && (now - buffer[start % size].t) > Z_FILTERTIMELIMIT)
start++, num--;
start %= size;