From f3349d6ed3b61899c30f55d9852555d95818c0f0 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sun, 11 Dec 2005 11:20:26 +0000 Subject: [PATCH] fix an error in reporting why we abandoned a helper node svn:r5564 --- src/or/circuitbuild.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);