]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Bug #1222: Clarify new circuit after sleep notice
authorChris Ball <chris@printf.net>
Sat, 31 Jul 2010 20:20:21 +0000 (16:20 -0400)
committerNick Mathewson <nickm@torproject.org>
Sat, 31 Jul 2010 20:58:49 +0000 (16:58 -0400)
("Application request when we're believed to be offline." ->
 "Application request when we haven't used client functionality lately.")

changes/bug1222 [new file with mode: 0644]
src/or/circuituse.c

diff --git a/changes/bug1222 b/changes/bug1222
new file mode 100644 (file)
index 0000000..66d24de
--- /dev/null
@@ -0,0 +1,5 @@
+  o Minor bugfixes:
+    - #1222: Change "Application request when we're believed to be
+      offline." notice to "Application request when we haven't used
+      client functionality lately.", to clarify that it's not an error.
+
index a3f10a8841043da9863c0e524eff0df118475f24..63742da307b6749b35e5e614406bc1025b9733f9 100644 (file)
@@ -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));
       }
     }