diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-04-23 09:21:44 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-04-23 09:21:44 -0400 |
commit | f1204e0c029b40d11360da57045ad9ae51264744 (patch) | |
tree | 807c24eb25dad5811d4696a144583f6fc2bc576b /src/or/or.h | |
parent | 241e6b093730106978ceef5b500c7049b9846084 (diff) | |
download | tor-f1204e0c029b40d11360da57045ad9ae51264744.tar.gz tor-f1204e0c029b40d11360da57045ad9ae51264744.zip |
Fix another signed/unsigned comparison bug
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index 4fd6d1d9f6..2f6890a9ef 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4869,7 +4869,7 @@ typedef struct rend_intro_point_t { * will accept. This is a random value between * INTRO_POINT_MIN_LIFETIME_INTRODUCTIONS and * INTRO_POINT_MAX_LIFETIME_INTRODUCTIONS. */ - unsigned int max_introductions; + int max_introductions; /** (Service side only) The time at which this intro point was first * published, or -1 if this intro point has not yet been |