diff options
author | huyvq <huyvq.c633@gmail.com> | 2017-06-02 23:26:53 +0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-06-21 13:49:17 -0400 |
commit | d92b999757336249bcff15c5c498e6e5353d38c4 (patch) | |
tree | 068e68aaabacafd7e82635591ff5296ef7eab144 /src/or/router.c | |
parent | 0471c905a18760413a63f05f50535313c76ca0c4 (diff) | |
download | tor-d92b999757336249bcff15c5c498e6e5353d38c4.tar.gz tor-d92b999757336249bcff15c5c498e6e5353d38c4.zip |
Convert authdir_mode_handles_descs(options, -1) with authdir_mode(options)
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index 849cffd8fa..a264af1551 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1635,7 +1635,7 @@ authdir_mode_publishes_statuses(const or_options_t *options) int authdir_mode_tests_reachability(const or_options_t *options) { - return authdir_mode_handles_descs(options, -1); + return authdir_mode(options); } /** Return true iff we believe ourselves to be a bridge authoritative * directory server. |