diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-11-07 01:48:55 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-11-07 01:48:55 +0000 |
commit | a38026bb06c37f154879358d9449c9dbc23d3864 (patch) | |
tree | 9c2b697e3ab4752eed44d46988cbee1a1e2650c4 /src/or/dirserv.c | |
parent | 3ebd1ebeca2edc09027dd583149c64c48c3e7832 (diff) | |
download | tor-a38026bb06c37f154879358d9449c9dbc23d3864.tar.gz tor-a38026bb06c37f154879358d9449c9dbc23d3864.zip |
fix wide lines
svn:r17198
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r-- | src/or/dirserv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index d8872fb11e..f139c5e79b 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1814,7 +1814,7 @@ dirserv_compute_performance_thresholds(routerlist_t *rl) "Cutoffs: For Stable, %lu sec uptime, %lu sec MTBF. " "For Fast: %lu bytes/sec. " "For Guard: WFU %.03lf%%, time-known %lu sec, " - "and bandwidth %lu or %lu bytes/sec. We do%s have enough stability data.", + "and bandwidth %lu or %lu bytes/sec. We%s have enough stability data.", (unsigned long)stable_uptime, (unsigned long)stable_mtbf, (unsigned long)fast_bandwidth, @@ -1822,7 +1822,7 @@ dirserv_compute_performance_thresholds(routerlist_t *rl) (unsigned long)guard_tk, (unsigned long)guard_bandwidth_including_exits, (unsigned long)guard_bandwidth_excluding_exits, - enough_mtbf_info ? "" : "not "); + enough_mtbf_info ? "" : "don't "); tor_free(uptimes); tor_free(mtbfs); |