diff options
Diffstat (limited to 'src/or/routerparse.c')
-rw-r--r-- | src/or/routerparse.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/or/routerparse.c b/src/or/routerparse.c index 5903e3ddcf..8b0e590aa9 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -433,10 +433,9 @@ router_parse_routerlist_from_directory(const char *str, static int have_warned_about_unverified_status = 0; routerinfo_t *me = router_get_my_routerinfo(); if (me) { - if (router_update_status_from_smartlist(me, published_on, - good_nickname_list, - tok->tp==K_RUNNING_ROUTERS)==1 && - me->is_verified == 0 && !have_warned_about_unverified_status) { + if (router_update_status_from_smartlist(me, + published_on, good_nickname_list, tok->tp==K_RUNNING_ROUTERS)==1 && + me->is_verified == 0 && !have_warned_about_unverified_status) { log_fn(LOG_WARN,"Dirserver '%s' lists your server as unverified. Please consider sending your identity fingerprint to the tor-ops.", dirnickname); have_warned_about_unverified_status = 1; } |