Bugfix on r17756:

Avoid trying to print raw memory to the logs when we decide to
give up on downloading a given relay descriptor. Bugfix on
0.2.1.9-alpha.


svn:r18831
This commit is contained in:
Roger Dingledine 2009-03-09 22:05:17 +00:00
parent 7ee8afe82d
commit 4774e593b8
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
Changes in version 0.2.1.14-??? - 2009-03-??
o Minor bugfixes:
- Avoid trying to print raw memory to the logs when we decide to
give up on downloading a given relay descriptor. Bugfix on
0.2.1.9-alpha.
Changes in version 0.2.1.13-alpha - 2009-03-09
o Major bugfixes:
- Correctly update the list of which countries we exclude as

View File

@ -3544,7 +3544,7 @@ router_load_routers_from_string(const char *s, const char *eos,
ri->cache_info.signed_descriptor_digest);
if (dl_status) {
log_info(LD_GENERAL, "Marking router %s as never downloadable",
ri->cache_info.signed_descriptor_digest);
hex_str(ri->cache_info.signed_descriptor_digest, DIGEST_LEN));
download_status_mark_impossible(dl_status);
}
}