diff options
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 584b22384..b9b07acd2 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1911,13 +1911,11 @@ helper_node_set_status(const char *digest, int succeeded) } } else { if (!helper->made_contact) { /* dump him */ - - changed = 1; } else if (!helper->down_since) { helper->down_since = time(NULL); - warn(LD_CIRC, - "Connection to helper node '%s' failed. %d/%d helpers usable.", + warn(LD_CIRC, "Connection to helper node '%s' failed." + " %d/%d helpers usable.", helper->nickname, num_live_helpers(), smartlist_len(helper_nodes)); changed = 1; |