summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-07-21 07:55:35 +0000
committerRoger Dingledine <arma@torproject.org>2006-07-21 07:55:35 +0000
commit99a0869f6ef91dea265f5f18119f7a8ecba7bb46 (patch)
tree2b2632ba46bb4043f986c71e71daa56f7fc0317f
parent5a26359e04ec807d0fc8d03842fa293eddb25201 (diff)
downloadtor-99a0869f6ef91dea265f5f18119f7a8ecba7bb46.tar.gz
tor-99a0869f6ef91dea265f5f18119f7a8ecba7bb46.zip
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
-rw-r--r--trunk/src/or/main.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/trunk/src/or/main.c b/trunk/src/or/main.c
index 5941241d18..6623c10f79 100644
--- a/trunk/src/or/main.c
+++ b/trunk/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));