summaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2006-09-28 22:59:36 +0000
committerPeter Palfrader <peter@palfrader.org>2006-09-28 22:59:36 +0000
commit540fbaae7507db3cb49b2165928b9f3d0b3c7565 (patch)
tree90c6e3364422b2e1a745b42c54a70a843c176807 /src/or
parent9e6c0b8b3b96e9a0b28f301ad83fd0d712c8747f (diff)
downloadtor-540fbaae7507db3cb49b2165928b9f3d0b3c7565.tar.gz
tor-540fbaae7507db3cb49b2165928b9f3d0b3c7565.zip
r9889@danube: weasel | 2006-09-29 00:57:42 +0200
bandwidth is not measured in bytes svn:r8515
Diffstat (limited to 'src/or')
-rw-r--r--src/or/dirserv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index 54c9a341c6..5a35b25139 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -1311,9 +1311,9 @@ dirserv_compute_performance_thresholds(routerlist_t *rl)
log_info(LD_DIRSERV, "Uptime cutoff is %lu seconds.",
(unsigned long)stable_uptime);
- log_info(LD_DIRSERV, "Bandwidth cutoff is %lu bytes.",
+ log_info(LD_DIRSERV, "Bandwidth cutoff is %lu bytes/second.",
(unsigned long)fast_bandwidth);
- log_info(LD_DIRSERV, "Guard bandwidth cutoff is %lu bytes.",
+ log_info(LD_DIRSERV, "Guard bandwidth cutoff is %lu bytes/second.",
(unsigned long)guard_bandwidth);
SMARTLIST_FOREACH(uptimes, uint32_t *, up, tor_free(up));