diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-06-24 14:39:01 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-06-24 15:25:17 -0400 |
commit | f9de0affd3f50d411e04bc1229525af2a14927fd (patch) | |
tree | 4e91733870b862aa6081d7de4530b3db5908ed2a /src/feature/relay/selftest.c | |
parent | 5c5fb0fcca504d319276a697fec43287e242765d (diff) | |
download | tor-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/feature/relay/selftest.c')
-rw-r--r-- | src/feature/relay/selftest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/relay/selftest.c b/src/feature/relay/selftest.c index 71054e6e87..64b8578bac 100644 --- a/src/feature/relay/selftest.c +++ b/src/feature/relay/selftest.c @@ -408,7 +408,7 @@ ready_to_publish(const or_options_t *options) { return options->PublishServerDescriptor_ != NO_DIRINFO && router_dirport_seems_reachable(options) && - router_should_skip_orport_reachability_check(options); + router_all_orports_seem_reachable(options); } /** Annotate that we found our ORPort reachable with a given address |