diff options
author | Roger Dingledine <arma@torproject.org> | 2006-05-26 16:29:20 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-05-26 16:29:20 +0000 |
commit | f579478687c494a3a1bec5885b0136f8cbd68f86 (patch) | |
tree | 762761c56ac6758977f346d700b6b280c9d726a9 /src/or/routerlist.c | |
parent | 731f4086c04b22b15eb3b62dcd491e0856b3d3e2 (diff) | |
download | tor-f579478687c494a3a1bec5885b0136f8cbd68f86.tar tor-f579478687c494a3a1bec5885b0136f8cbd68f86.tar.gz |
correct a false log message, since we actually reset all our
downloading stats every hour, and sometimes more often.
svn:r6505
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 38c8c14ac..2b22a0f9e 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -3463,8 +3463,8 @@ update_router_descriptor_client_downloads(time_t now) (int)(now-last_routerdesc_download_attempted)); } else { log_info(LD_DIR, - "There are not many downloadable routerdescs, but we've " - "never downloaded descriptors before. Downloading."); + "There are not many downloadable routerdescs, but we haven't " + "tried downloading descriptors recently. Downloading."); } } } |