mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
fix an error in reporting why we abandoned a helper node
svn:r5564
This commit is contained in:
@@ -1756,7 +1756,7 @@ remove_dead_helpers(void)
|
||||
since = helper->unlisted_since;
|
||||
} else if (helper->down_since + HELPER_ALLOW_DOWNTIME > now) {
|
||||
why = "down";
|
||||
since = helper->unlisted_since;
|
||||
since = helper->down_since;
|
||||
}
|
||||
if (why) {
|
||||
base16_encode(dbuf, sizeof(dbuf), helper->identity, DIGEST_LEN);
|
||||
|
||||
Reference in New Issue
Block a user