aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/or/routerlist.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index da5de5307..586c56db6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,10 @@ Changes in version 0.2.0.8-alpha - 2007-??-??
OR address is readable, set the port correctly. (Previously we
were reporting the dir port.) Bugfix on 0.1.2.x.
+ o Minor bugfixes (v3 directory code):
+ - Fix logic to look up a cert by its signing key digest. Bugfix on
+ 0.2.0.7-alpha.
+
Changes in version 0.2.0.7-alpha - 2007-09-21
o New directory authorities:
- Set up moria1 and tor26 as the first v3 directory authorities. See
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 41dbd126b..29b80735a 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -388,7 +388,7 @@ authority_cert_get_by_sk_digest(const char *sk_digest)
SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
{
if (!ds->v3_certs)
- return NULL;
+ continue;
SMARTLIST_FOREACH(ds->v3_certs, authority_cert_t *, cert,
{
if (!memcmp(cert->signing_key_digest, sk_digest, DIGEST_LEN))