diff options
author | Roger Dingledine <arma@torproject.org> | 2004-12-04 08:56:59 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-12-04 08:56:59 +0000 |
commit | 52676364b9205feea4c3b0c773e3040b86ca7a84 (patch) | |
tree | bb30a65f7e71f1ecbb1b42d7cfa791ad0ac6ce5e /src/or/rephist.c | |
parent | 2532e9405e6cbb29e3565e9fefd0d8492c4a9190 (diff) | |
download | tor-52676364b9205feea4c3b0c773e3040b86ca7a84.tar.gz tor-52676364b9205feea4c3b0c773e3040b86ca7a84.zip |
bugfix: router_exit_policy_rejects_all() was broken, so we were
sometimes picking middleman nodes as our last hop, which wasn't
very useful.
svn:r3075
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r-- | src/or/rephist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c index 0cba10ec8a..2f1c976f08 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -294,7 +294,7 @@ void rep_hist_dump_stats(time_t now, int severity) upt, upt+downt, uptime*100.0); if (!strmap_isempty(or_history->link_history_map)) { - strlcpy(buffer, " Good extend attempts: ", sizeof(buffer)); + strlcpy(buffer, " Extend attempts: ", sizeof(buffer)); len = strlen(buffer); for (lhist_it = strmap_iter_init(or_history->link_history_map); !strmap_iter_done(lhist_it); |