Skip to content
Snippets Groups Projects
Commit 4d6d3b3c authored by Nick Mathewson's avatar Nick Mathewson :game_die: Committed by George Kadianakis
Browse files

Remove BUG() when checking TOO_MANY_OUTDATED_DIRSERVERS.

Fixes bug #40234; bugfix on 0.3.2.5-alpha.
parent 6c0f1550
No related branches found
No related tags found
No related merge requests found
......@@ -124,8 +124,9 @@ microdesc_note_outdated_dirserver(const char *relay_digest)
tor_assert(outdated_dirserver_list);
/* If the list grows too big, clean it up */
if (BUG(smartlist_len(outdated_dirserver_list) >
TOO_MANY_OUTDATED_DIRSERVERS)) {
if (smartlist_len(outdated_dirserver_list) > TOO_MANY_OUTDATED_DIRSERVERS) {
log_info(LD_GENERAL,"Too many outdated directory servers (%d). Resetting.",
smartlist_len(outdated_dirserver_list));
microdesc_reset_outdated_dirservers_list();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment