diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-08-18 11:31:19 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-08-18 11:31:19 -0400 |
commit | a4c5287e1b8fbb132cefc834ee717f6c21953e0d (patch) | |
tree | e737b89955e1ebfedd8c01e5f3018a22d10768bb /src/or | |
parent | 5063a1c538739e56a38605b2d8ddba3164e1aa73 (diff) | |
download | tor-a4c5287e1b8fbb132cefc834ee717f6c21953e0d.tar tor-a4c5287e1b8fbb132cefc834ee717f6c21953e0d.tar.gz |
Clarify AssumeReachable semantics wrt hibernation
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/dirserv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 4d4d8a22c..dd9026758 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -944,7 +944,7 @@ dirserv_set_router_is_running(routerinfo_t *router, time_t now) * since it declared itself to be hibernating. */ answer = 0; } else if (get_options()->AssumeReachable) { - /* If AssumeReachable, everybody is up! */ + /* If AssumeReachable, everybody is up unless they say they are down! */ answer = 1; } else { /* Otherwise, a router counts as up if we found it reachable in the last |