commit e7290dc8c00dcb765ac67bebb6e30a086903b859
parent cf58b0b369605168c0c72994d600147fa477a5b1
Author: Nick Mathewson <nickm@torproject.org>
Date: Thu, 26 Mar 2020 10:38:08 -0400
Merge remote-tracking branch 'tor-github/pr/1780/head'
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/feature/nodelist/routerlist.c b/src/feature/nodelist/routerlist.c
@@ -2922,7 +2922,7 @@ router_differences_are_cosmetic(const routerinfo_t *r1, const routerinfo_t *r2)
(r1->bandwidthburst != r2->bandwidthburst))
return 0;
- /* Did more than 12 hours pass? */
+ /* Has enough time passed between the publication times? */
if (r1->cache_info.published_on + ROUTER_MAX_COSMETIC_TIME_DIFFERENCE
< r2->cache_info.published_on)
return 0;