diff options
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/router.c b/src/or/router.c index e785096915..a5d8895e7b 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -361,10 +361,10 @@ init_keys(void) crypto_pk_get_digest(get_identity_key(), digest); if (!router_digest_is_trusted_dir(digest)) { add_trusted_dir_server(options->Nickname, NULL, - (uint16_t)options->DirPort, digest, - options->V1AuthoritativeDir, /* v1 authority */ - 1, /* v2 authority */ - options->HSAuthoritativeDir /* hidserv authority */); + (uint16_t)options->DirPort, digest, + options->V1AuthoritativeDir, /* v1 authority */ + 1, /* v2 authority */ + options->HSAuthoritativeDir /*hidserv authority*/); } return 0; /* success */ } |