diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-08-21 12:10:05 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-08-22 10:15:56 -0400 |
commit | 775c491502e43f0490023b2917c4e1a05b38b5b8 (patch) | |
tree | fcde4b10787c0bbcf983f3811f5f4c45693aa21a /src/or/entrynodes.c | |
parent | e1c9b43b8efbc76ab3a6decf47d6d1ef1967ef77 (diff) | |
download | tor-775c491502e43f0490023b2917c4e1a05b38b5b8.tar.gz tor-775c491502e43f0490023b2917c4e1a05b38b5b8.zip |
Separate mutable/const accessors for circuit_build_times
(These have proved invaluable for other global accessors.)
Diffstat (limited to 'src/or/entrynodes.c')
-rw-r--r-- | src/or/entrynodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index b3764a9416..b66cc2b0d8 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -2279,6 +2279,6 @@ entry_guards_free_all(void) clear_bridge_list(); smartlist_free(bridge_list); bridge_list = NULL; - circuit_build_times_free_timeouts(get_circuit_build_times()); + circuit_build_times_free_timeouts(get_circuit_build_times_mutable()); } |