tor

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

commit eacfd2911274a7f6676509fc8173b66bd1264bc2
parent 79d3f401a5c87a61ca153af207039158db5f7874
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 23 Mar 2018 17:47:56 -0400

Fix windows compilation warnings in hs_service.c

These were breaking jenkins builds.  Bugfix on 5804ccc9070dc54;
bug not in any released Tor.

Diffstat:
Msrc/or/hs_service.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/or/hs_service.c b/src/or/hs_service.c @@ -1954,7 +1954,9 @@ should_rotate_descriptors(hs_service_t *service, time_t now) "time is %ld (now: %ld). Valid after time from " "consensus is %ld", service->desc_current, service->desc_next, - service->state.next_rotation_time, now, ns->valid_after); + (long)service->state.next_rotation_time, + (long)now, + (long)ns->valid_after); goto no_rotation; } goto rotation;