mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Fix windows compilation warnings in hs_service.c
These were breaking jenkins builds. Bugfix on 5804ccc9070dc54; bug not in any released Tor.
This commit is contained in:
parent
79d3f401a5
commit
eacfd29112
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user