summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-03-23 17:49:29 -0400
committerNick Mathewson <nickm@torproject.org>2018-03-23 17:49:29 -0400
commitd749f6b5f62731d42bdad5d60a413fdd7f120158 (patch)
treea3b69cbd6063e6e69d175f6244243d58a15a88e3 /src
parent398bef2592010e71692dd9c3b5b90d3751c48bb2 (diff)
parenteacfd2911274a7f6676509fc8173b66bd1264bc2 (diff)
downloadtor-d749f6b5f62731d42bdad5d60a413fdd7f120158.tar.gz
tor-d749f6b5f62731d42bdad5d60a413fdd7f120158.zip
Merge branch 'maint-0.3.3'
Diffstat (limited to 'src')
-rw-r--r--src/or/hs_service.c4
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;