diff 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 0d158c7eaa..d70211bd0c 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -385,7 +385,7 @@ void consider_testing_reachability(void) { routerinfo_t *me = router_get_my_routerinfo(); if (!can_reach_or_port) { - circuit_launch_by_identity(CIRCUIT_PURPOSE_TESTING, me->identity_digest, 0, 0, 1); + circuit_launch_by_router(CIRCUIT_PURPOSE_TESTING, me, 0, 0, 1); } if (!can_reach_dir_port && me->dir_port) { |