tor

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

commit cf3da63b9023875e93c05d30fb6d76e047bebe70
parent 66e99096b32e4b10620eef40a66228b027a54106
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri,  1 Dec 2017 12:13:40 -0500

Merge branch 'maint-0.3.2'

Diffstat:
Achanges/bug24480 | 3+++
Msrc/or/rendservice.c | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/changes/bug24480 b/changes/bug24480 @@ -0,0 +1,3 @@ + o Minor bugfixes (compilation): + - Fix a signed/unsigned comparison warning introduced by our + fix to TROVE-2017-009. Fixes bug 24480; bugfix on 0.2.5.16. diff --git a/src/or/rendservice.c b/src/or/rendservice.c @@ -1829,7 +1829,7 @@ rend_service_receive_introduction(origin_circuit_t *circuit, time_t now = time(NULL); time_t elapsed; int replay; - size_t keylen; + ssize_t keylen; /* Do some initial validation and logging before we parse the cell */ if (circuit->base_.purpose != CIRCUIT_PURPOSE_S_INTRO) {