diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2013-01-31 10:17:11 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-01 17:01:26 -0500 |
commit | b3e57b760e7a7b77d2da414b52820283563c473d (patch) | |
tree | 7f1c9a9310ac52b3078226d42035fcd46626aa2f /src/or/circuitbuild.c | |
parent | da5817772d6a10e1e842a6d8f72e6ba123bd29ec (diff) | |
download | tor-b3e57b760e7a7b77d2da414b52820283563c473d.tar.gz tor-b3e57b760e7a7b77d2da414b52820283563c473d.zip |
Increment an informational counter for use failed state.
This informational counter is probably now redundant, but might as well keep
it consistent I guess.
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 6689f73e22..91f70779c4 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -2002,6 +2002,10 @@ pathbias_check_close(origin_circuit_t *ocirc, int reason) pathbias_count_use_success(ocirc); break; + case PATH_STATE_USE_FAILED: + pathbias_count_use_failed(ocirc); + break; + default: // Other states are uninteresting. No stats to count. break; |