diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-02-07 12:46:27 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-02-07 12:46:27 -0500 |
commit | 12b58ba551311db26ef6d769a5ee6eee9c294e01 (patch) | |
tree | e363e6e4d5521ea9215ec913cfa204b0efeef40a /src/or/circuitlist.c | |
parent | a7440d9c9df1141a5ff52c1358bc28a8bb27bea3 (diff) | |
parent | 93ebcc2b8f8f22f2628cf74cc92674c8fbeb7b9a (diff) | |
download | tor-12b58ba551311db26ef6d769a5ee6eee9c294e01.tar.gz tor-12b58ba551311db26ef6d769a5ee6eee9c294e01.zip |
Merge remote-tracking branch 'dgoulet/ticket25163_033_01'
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r-- | src/or/circuitlist.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index e134b157cc..db145efc53 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -1986,8 +1986,7 @@ circuit_mark_all_dirty_circs_as_unusable(void) * - If state is onionskin_pending, remove circ from the onion_pending * list. * - If circ isn't open yet: call circuit_build_failed() if we're - * the origin, and in either case call circuit_rep_hist_note_result() - * to note stats. + * the origin. * - If purpose is C_INTRODUCE_ACK_WAIT, report the intro point * failure we just had to the hidden service client module. * - If purpose is C_INTRODUCING and <b>reason</b> isn't TIMEOUT, @@ -2123,7 +2122,6 @@ circuit_about_to_free(circuit_t *circ) if (CIRCUIT_IS_ORIGIN(circ)) { origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ); circuit_build_failed(ocirc); /* take actions if necessary */ - circuit_rep_hist_note_result(ocirc); } } if (circ->state == CIRCUIT_STATE_CHAN_WAIT) { |