diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-06-22 07:01:54 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-06-22 07:01:54 +0000 |
commit | b7910202a306dbeb7b3ce024dc166ac9ea7de44f (patch) | |
tree | 77b1807eae66799a08938052d5024c7dc8a44c96 /src/or/directory.c | |
parent | fb6d4855baf0cddc7ce4bff73b12822414013282 (diff) | |
download | tor-b7910202a306dbeb7b3ce024dc166ac9ea7de44f.tar.gz tor-b7910202a306dbeb7b3ce024dc166ac9ea7de44f.zip |
Next batch of memory miserdom: mmap cached-routers file. This is sure to break somewhere.
svn:r6675
Diffstat (limited to 'src/or/directory.c')
-rw-r--r-- | src/or/directory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 3430e12c22..47af8f1504 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -1076,7 +1076,7 @@ connection_dir_client_reached_eof(connection_t *conn) if (which || (conn->requested_resource && !strcmpstart(conn->requested_resource, "all"))) { /* as we learn from them, we remove them from 'which' */ - router_load_routers_from_string(body, 0, which); + router_load_routers_from_string(body, SAVED_NOWHERE, which); directory_info_has_arrived(time(NULL), 0); } if (which) { /* mark remaining ones as failed */ |