tor

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

commit d749f6b5f62731d42bdad5d60a413fdd7f120158
parent 398bef2592010e71692dd9c3b5b90d3751c48bb2
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 23 Mar 2018 17:49:29 -0400

Merge branch 'maint-0.3.3'

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 @@ -1953,7 +1953,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;