aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/circuitbuild.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-06-24 14:39:01 -0400
committerNick Mathewson <nickm@torproject.org>2020-06-24 15:25:17 -0400
commitf9de0affd3f50d411e04bc1229525af2a14927fd (patch)
tree4e91733870b862aa6081d7de4530b3db5908ed2a /src/core/or/circuitbuild.c
parent5c5fb0fcca504d319276a697fec43287e242765d (diff)
downloadtor-f9de0affd3f50d411e04bc1229525af2a14927fd.tar.gz
tor-f9de0affd3f50d411e04bc1229525af2a14927fd.zip
Rename router_should_skip_orport_reachability_check.
This was supposed to happen in #40012, but the command line was wrong. This is an automated commit, generated by this command: ./scripts/maint/rename_c_identifier.py \ router_should_skip_orport_reachability_check router_all_orports_seem_reachable
Diffstat (limited to 'src/core/or/circuitbuild.c')
-rw-r--r--src/core/or/circuitbuild.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/circuitbuild.c b/src/core/or/circuitbuild.c
index be8ec6f3cb..652d85b1c1 100644
--- a/src/core/or/circuitbuild.c
+++ b/src/core/or/circuitbuild.c
@@ -1055,7 +1055,7 @@ circuit_build_no_more_hops(origin_circuit_t *circ)
control_event_client_status(LOG_NOTICE, "CIRCUIT_ESTABLISHED");
clear_broken_connection_map(1);
if (server_mode(options) &&
- !router_should_skip_orport_reachability_check(options)) {
+ !router_all_orports_seem_reachable(options)) {
inform_testing_reachability();
router_do_reachability_checks(1, 1);
}