diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-03-23 17:49:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-03-23 17:49:29 -0400 |
commit | d749f6b5f62731d42bdad5d60a413fdd7f120158 (patch) | |
tree | a3b69cbd6063e6e69d175f6244243d58a15a88e3 /src/or/hs_service.c | |
parent | 398bef2592010e71692dd9c3b5b90d3751c48bb2 (diff) | |
parent | eacfd2911274a7f6676509fc8173b66bd1264bc2 (diff) | |
download | tor-d749f6b5f62731d42bdad5d60a413fdd7f120158.tar.gz tor-d749f6b5f62731d42bdad5d60a413fdd7f120158.zip |
Merge branch 'maint-0.3.3'
Diffstat (limited to 'src/or/hs_service.c')
-rw-r--r-- | src/or/hs_service.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/hs_service.c b/src/or/hs_service.c index e8f4a69ba8..ba8abc4237 100644 --- 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; |