tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 067a4422fec371e1ef3a1b8d13d5da9a1e90c70b
parent e884248118e946c56fb8b70c2d5189946f3af95a
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu, 24 Aug 2017 15:33:27 -0400

Apply ahf's ceil_div.cocci patch.

Diffstat:
Msrc/or/rephist.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/or/rephist.c b/src/or/rephist.c @@ -2552,7 +2552,7 @@ rep_hist_format_buffer_stats(time_t now) processed_cells_string, queued_cells_string, time_in_queue_string, - (number_of_circuits + SHARES - 1) / SHARES); + CEIL_DIV(number_of_circuits, SHARES)); tor_free(processed_cells_string); tor_free(queued_cells_string); tor_free(time_in_queue_string);