diff options
author | Chris Ball <chris@printf.net> | 2010-07-31 16:20:21 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-07-31 16:58:49 -0400 |
commit | 1470eb2e91d6d9b986b6abb37fe9dc0d2f0b7ceb (patch) | |
tree | d6be0d127d343e259a1f918661ecca8057e5bf19 /src/or/circuituse.c | |
parent | 15424bf800a56007d802db3a9d3fe40fbdf2bee5 (diff) | |
download | tor-1470eb2e91d6d9b986b6abb37fe9dc0d2f0b7ceb.tar.gz tor-1470eb2e91d6d9b986b6abb37fe9dc0d2f0b7ceb.zip |
Bug #1222: Clarify new circuit after sleep notice
("Application request when we're believed to be offline." ->
"Application request when we haven't used client functionality lately.")
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index a3f10a8841..63742da307 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -1184,13 +1184,13 @@ circuit_get_open_circ_or_launch(edge_connection_t *conn, * as loudly. the user doesn't even know it's happening. */ if (options->UseBridges && bridges_known_but_down()) { log_fn(severity, LD_APP|LD_DIR, - "Application request when we're believed to be " - "offline. Optimistically trying known bridges again."); + "Application request when we haven't used client functionality " + "lately. Optimistically trying known bridges again."); bridges_retry_all(); } else if (!options->UseBridges || any_bridge_descriptors_known()) { log_fn(severity, LD_APP|LD_DIR, - "Application request when we're believed to be " - "offline. Optimistically trying directory fetches again."); + "Application request when we haven't used client functionality " + "lately. Optimistically trying directory fetches again."); routerlist_retry_directory_downloads(time(NULL)); } } |