summaryrefslogtreecommitdiff
path: root/src/or/directory.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-09-23 18:05:14 +0000
committerNick Mathewson <nickm@torproject.org>2005-09-23 18:05:14 +0000
commitf995edd5169294af37365c0e3fc62d9a76718512 (patch)
tree2e40d053ada3181b216f1b66797e3b17f4b2dc7f /src/or/directory.c
parent90504803393cfee080e32b2a5fee44b411b57aaa (diff)
downloadtor-f995edd5169294af37365c0e3fc62d9a76718512.tar.gz
tor-f995edd5169294af37365c0e3fc62d9a76718512.zip
Fix at least one overzealous download bug. (tor_malloc_zero new local_routerstatus_t objs); add a pile of logs back in; probe every 10sec; never autolaunch on failure. Let us see if this works better.
svn:r5125
Diffstat (limited to 'src/or/directory.c')
-rw-r--r--src/or/directory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/directory.c b/src/or/directory.c
index 8ca14c5f50..cec7e964f0 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -322,7 +322,7 @@ connection_dir_download_routerdesc_failed(connection_t *conn)
{
/* Try again. No need to increment the failure count for routerdescs, since
* it's not their fault.*/
- update_router_descriptor_downloads(time(NULL));
+ /* update_router_descriptor_downloads(time(NULL)); */
}
/** Helper for directory_initiate_command_(router|trusted_dir): send the
@@ -1598,7 +1598,7 @@ dir_routerdesc_download_failed(smartlist_t *failed)
cp, (int)rs->n_download_failures);
});
- update_router_descriptor_downloads(time(NULL));
+ /* update_router_descriptor_downloads(time(NULL)); */
}
/* DOCDOC */