diff options
author | Roger Dingledine <arma@torproject.org> | 2005-12-11 11:20:26 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-12-11 11:20:26 +0000 |
commit | f3349d6ed3b61899c30f55d9852555d95818c0f0 (patch) | |
tree | 2ef5e88f81bc19ed726dffbeb4085a659f26f5ec /src | |
parent | b974f67c014f7b8ff47e1b26a1aaa21674f21098 (diff) | |
download | tor-f3349d6ed3b61899c30f55d9852555d95818c0f0.tar.gz tor-f3349d6ed3b61899c30f55d9852555d95818c0f0.zip |
fix an error in reporting why we abandoned a helper node
svn:r5564
Diffstat (limited to 'src')
-rw-r--r-- | src/or/circuitbuild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index cc4082b729..8ac40d9956 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -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); |