diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-09-07 23:21:18 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-09-07 23:21:18 -0400 |
commit | 7988596f66874fd36d1c99bf39736e4b41609a6b (patch) | |
tree | 8bdd66158567b2102cfbd6b4f84c536b2efb7c7a /src/or/router.c | |
parent | 2cde6658b5998561e9e8a9377976db87690a2387 (diff) | |
download | tor-7988596f66874fd36d1c99bf39736e4b41609a6b.tar.gz tor-7988596f66874fd36d1c99bf39736e4b41609a6b.zip |
Remove version_supports checks for versions before 0.2.2.
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/router.c b/src/or/router.c index bb8a6e3721..4e1eb2ddb2 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -954,8 +954,7 @@ consider_testing_reachability(int test_or, int test_dir) /* ask myself, via tor, for my server descriptor. */ directory_initiate_command(me->address, &addr, me->or_port, me->dir_port, - 0, /* does not matter */ - 0, me->cache_info.identity_digest, + me->cache_info.identity_digest, DIR_PURPOSE_FETCH_SERVERDESC, ROUTER_PURPOSE_GENERAL, 1, "authority.z", NULL, 0, 0); |