tor

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

commit a3685ba0c53003361402bed2058009da81618ed5
parent 21e5146529e4040c7391f3696baa5e6b4370d06d
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed,  9 Aug 2017 08:31:44 -0400

Fix a warning on 32-bit clang

Diffstat:
Msrc/or/hs_common.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/or/hs_common.c b/src/or/hs_common.c @@ -245,7 +245,7 @@ hs_get_start_time_of_next_time_period(time_t now) /* Apply rotation offset as specified by prop224 section [TIME-PERIODS] */ unsigned int time_period_rotation_offset = sr_state_get_phase_duration(); - return start_of_next_tp_in_mins * 60 + time_period_rotation_offset; + return (time_t)(start_of_next_tp_in_mins * 60 + time_period_rotation_offset); } /* Create a new rend_data_t for a specific given <b>version</b>.