diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-02-19 14:38:04 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-19 15:02:08 -0500 |
commit | 3340d3279de0bb411c506a759778ee7a9b45165b (patch) | |
tree | 139e0dbfba7f0fd52f4ea5115771d5d80e829927 /src/or/circuitbuild.h | |
parent | f2199763cf7c57744a885c12afcfa7b9df304629 (diff) | |
download | tor-3340d3279de0bb411c506a759778ee7a9b45165b.tar.gz tor-3340d3279de0bb411c506a759778ee7a9b45165b.zip |
Downgrade an assert to LD_BUG
This should prevent crashes on further recurrence of 8065, and help
diagnose such if they occur
Diffstat (limited to 'src/or/circuitbuild.h')
-rw-r--r-- | src/or/circuitbuild.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/circuitbuild.h b/src/or/circuitbuild.h index 3ca8d1531d..a3091707e8 100644 --- a/src/or/circuitbuild.h +++ b/src/or/circuitbuild.h @@ -66,6 +66,7 @@ int pathbias_check_probe_response(circuit_t *circ, const cell_t *cell); void pathbias_count_use_attempt(origin_circuit_t *circ); void pathbias_mark_use_success(origin_circuit_t *circ); void pathbias_mark_use_rollback(origin_circuit_t *circ); +const char *pathbias_state_to_string(path_state_t state); #endif |