aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/circuitbuild.c
diff options
context:
space:
mode:
authorteor <teor@riseup.net>2020-05-07 20:07:13 +1000
committerteor <teor@riseup.net>2020-05-07 20:07:13 +1000
commit05c56ae455de1f8e1dc9816ab9dcd7f0cdc2c994 (patch)
treeeb5e6f815ebd3fc039365174c0df30f3d07669ee /src/core/or/circuitbuild.c
parent4a36dfebee080ccd56501042b2943c114544d7eb (diff)
downloadtor-05c56ae455de1f8e1dc9816ab9dcd7f0cdc2c994.tar.gz
tor-05c56ae455de1f8e1dc9816ab9dcd7f0cdc2c994.zip
Replace several C identifiers.
This is an automated commit, generated by this command: ./scripts/maint/rename_c_identifier.py \ router_skip_orport_reachability_check router_should_skip_orport_reachability_check \ router_skip_dirport_reachability_check router_should_skip_dirport_reachability_check \ router_connect_assume_or_reachable client_or_conn_should_skip_reachable_address_check \ router_connect_assume_dir_reachable client_dir_conn_should_skip_reachable_address_check It was generated with --no-verify, so it probably breaks some commit hooks. The commiter should be sure to fix them up in a subsequent commit.
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 c4d544a64c..8d5988b63c 100644
--- a/src/core/or/circuitbuild.c
+++ b/src/core/or/circuitbuild.c
@@ -1051,7 +1051,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_skip_orport_reachability_check(options)) {
+ !router_should_skip_orport_reachability_check(options)) {
inform_testing_reachability();
router_do_reachability_checks(1, 1);
}