commit 042116e1fd4d57142b47943f57f6cea79ee941c4
parent aab5d90858beb7eb9738c237dab5bcb7dd6ce91f
Author: teor <teor@torproject.org>
Date: Sun, 20 Oct 2019 22:09:00 +1000
Merge branch 'maint-0.4.2'
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/feature/hibernate/hibernate.c b/src/feature/hibernate/hibernate.c
@@ -815,7 +815,7 @@ hibernate_soft_limit_reached(void)
* We want to stop accepting connections when ALL of the following are true:
* - We expect to use up the remaining bytes in under 3 hours
* - We have used up 95% of our bytes.
- * - We have less than 500MBytes of bytes left.
+ * - We have less than 500MBytes left.
*/
uint64_t soft_limit = (uint64_t) (acct_max * SOFT_LIM_PCT);
if (acct_max > SOFT_LIM_BYTES && acct_max - SOFT_LIM_BYTES > soft_limit) {