aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-12-01 12:13:40 -0500
committerNick Mathewson <nickm@torproject.org>2017-12-01 12:13:40 -0500
commit3ec72ef52aa3fa9871335b1713e090e3677987d7 (patch)
treebae2734d2c6a7658b4c9e86037f6e955ca03bbdf
parent235083308add586c0b86b2e0ce8af7c9a7f4b5c0 (diff)
parentf97f301b5b5605f559522ffae2159fc4d061817c (diff)
downloadtor-3ec72ef52aa3fa9871335b1713e090e3677987d7.tar.gz
tor-3ec72ef52aa3fa9871335b1713e090e3677987d7.zip
Merge branch 'maint-0.2.8' into release-0.2.8
-rw-r--r--changes/bug244803
-rw-r--r--src/or/rendservice.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/changes/bug24480 b/changes/bug24480
new file mode 100644
index 0000000000..94e5b91a0c
--- /dev/null
+++ 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
index 829a1b7aea..037c5fadd9 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -1469,7 +1469,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) {