diff options
author | Roger Dingledine <arma@torproject.org> | 2008-06-04 09:02:25 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-06-04 09:02:25 +0000 |
commit | b8bde32c3a906ec58a3b37f6e49275a1a8a2d40a (patch) | |
tree | bf5e406434cfb84c734b3b6b022304fd5783f809 /src/or/router.c | |
parent | c6b3cf4b968f65312a1e52aed53b7256a097ca2b (diff) | |
download | tor-b8bde32c3a906ec58a3b37f6e49275a1a8a2d40a.tar.gz tor-b8bde32c3a906ec58a3b37f6e49275a1a8a2d40a.zip |
forward-port r14934
svn:r14936
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index 972bd8525b..399f3138ba 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1822,7 +1822,7 @@ extrainfo_dump_to_string(char *s, size_t maxlen, extrainfo_t *extrainfo, if (result<0) return -1; - if (options->BridgeRelay && options->BridgeRecordUsageByCountry) { + if (should_record_bridge_info(options)) { static time_t last_purged_at = 0; char *geoip_summary; time_t now = time(NULL); |