From 2249180b60d370ed8cb3f35b7c02c60f3d3ff529 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 21 Jul 2006 07:55:35 +0000 Subject: [PATCH] bugfix: if you find yourself reachable, then don't ever make any client requests (so you stop predicting circuits), then hup, then later your IP changes, you won't think circuits are working so you won't try to test reachability, so you won't publish. svn:r6800 --- src/or/main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/or/main.c b/src/or/main.c index 5941241d18..6623c10f79 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1029,7 +1029,6 @@ do_hup(void) or_options_t *options = get_options(); log_notice(LD_GENERAL,"Received reload signal (hup). Reloading config."); - has_completed_circuit=0; if (accounting_is_enabled(options)) accounting_record_bandwidth_usage(time(NULL));