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/channel.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/channel.c')
-rw-r--r-- | src/or/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/channel.c b/src/or/channel.c index 8743437297..7f395490c9 100644 --- a/src/or/channel.c +++ b/src/or/channel.c @@ -2361,7 +2361,7 @@ channel_do_open_actions(channel_t *chan) started_here = channel_is_outgoing(chan); if (started_here) { - circuit_build_times_network_is_live(get_circuit_build_times()); + circuit_build_times_network_is_live(get_circuit_build_times_mutable()); rep_hist_note_connect_succeeded(chan->identity_digest, now); if (entry_guard_register_connect_status( chan->identity_digest, 1, 0, now) < 0) { |