瀏覽代碼

fix an error in reporting why we abandoned a helper node

svn:r5564
Roger Dingledine 20 年之前
父節點
當前提交
f3349d6ed3
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/or/circuitbuild.c

+ 1 - 1
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);