aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2009-03-09 22:05:17 +0000
committerRoger Dingledine <arma@torproject.org>2009-03-09 22:05:17 +0000
commit4774e593b822354a929ea500dbe9906e1e302b05 (patch)
tree999d7be5e71b374e00d4657a30534ed843a7acbe
parent7ee8afe82d76b8b07087b5c28c1a075ed1ec6c9b (diff)
downloadtor-4774e593b822354a929ea500dbe9906e1e302b05.tar
tor-4774e593b822354a929ea500dbe9906e1e302b05.tar.gz
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
-rw-r--r--ChangeLog7
-rw-r--r--src/or/routerlist.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 165f4eafe..f37d1368e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 080603b7e..a606d57e2 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -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);
}
}