diff options
author | Roger Dingledine <arma@torproject.org> | 2005-11-15 09:15:43 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-11-15 09:15:43 +0000 |
commit | 53269f696dbac7177e1755c52259eaa952d2b85a (patch) | |
tree | d3861cd94f6a97bdba7547317c7cdbcbbfc10563 /src | |
parent | 6c361468c11d3342cc0e774cf4d10ac40819771a (diff) | |
download | tor-53269f696dbac7177e1755c52259eaa952d2b85a.tar tor-53269f696dbac7177e1755c52259eaa952d2b85a.tar.gz |
fix logic error: not unnamed is good.
svn:r5377
Diffstat (limited to 'src')
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 8bb8fbbdb..3fe7411d1 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -2524,7 +2524,7 @@ routers_update_all_from_networkstatus(void) n_recent-n_valid, n_recent); have_warned_about_unverified_status = 1; } else if (!n_named) { // (n_named <= n_recent/2) { - warn(LD_GENERAL, "%d/%d recent directory servers list us as unnamed. Please consider sending your identity fingerprint to the tor-ops.", + warn(LD_GENERAL, "%d/%d recent directory servers recognize this server. Please consider sending your identity fingerprint to the tor-ops.", n_recent-n_named, n_recent); have_warned_about_unverified_status = 1; } |