backport r17958

svn:r17961
This commit is contained in:
Roger Dingledine 2009-01-06 16:14:13 +00:00
parent 1443069018
commit 59e380c559
2 changed files with 7 additions and 1 deletions

View File

@ -18,6 +18,10 @@ Changes in version 0.2.0.33 - 2009-01-??
get a recent networkstatus but would get descriptors from up to
18 hours earlier, meaning most of the descriptors were obsolete
already. Reported by Tas; bugfix on 0.2.0.13-alpha.
- Prevent bridge relays from serving their 'extrainfo' document
to anybody who asks, now that extrainfo docs include potentially
sensitive aggregated client geoip summaries. Bugfix on
0.2.0.13-alpha.
o Minor bugfixes:
- Do not mark smartlist_bsearch_idx() function as ATTR_PURE. This bug

View File

@ -2468,7 +2468,9 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers,
}
if (!strcmpstart(url,"/tor/server/") ||
(!options->BridgeAuthoritativeDir && !strcmpstart(url,"/tor/extra/"))) {
(!options->BridgeAuthoritativeDir &&
!options->BridgeRelay &&
!strcmpstart(url,"/tor/extra/"))) {
int res;
const char *msg;
const char *request_type = NULL;