mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
5b03c7ba6d
The condition was always true meaning that we would reconsider updating our directory information every 2 minutes. If valid_until is 6am today, then now - 24h == 1pm yesterday which means that "valid_until < (now - 24h)" is false. But at 6:01am tomorrow, "valid_until < (now - 24h)" becomes true which is that point that we shouldn't trust the consensus anymore. Fixes #23091 Signed-off-by: David Goulet <dgoulet@torproject.org>
7 lines
383 B
Plaintext
7 lines
383 B
Plaintext
o Minor bugfixes (consensus expiry):
|
|
- Tor would reconsider updating its directory information every 2 minutes
|
|
instead of only doing it for a consensus that is more than 24 hours old
|
|
(badly expired). This specific check is done in the tor main loop
|
|
callback that validates if we have an expired consensus. Fixes bug
|
|
23091; bugfix on tor-0.2.0.19-alpha.
|