]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r14005@kushana: nickm | 2007-08-14 09:34:19 -0400
authorNick Mathewson <nickm@torproject.org>
Tue, 14 Aug 2007 13:34:35 +0000 (13:34 +0000)
committerNick Mathewson <nickm@torproject.org>
Tue, 14 Aug 2007 13:34:35 +0000 (13:34 +0000)
 add a warning to find a bug (maybe)

svn:r11100

src/or/dirvote.c

index 88ecec1bb08bf059826ae1878fa8017f3568af4a..30dcbe3bca3569141c0bc681eda4707afd4f0dbc 100644 (file)
@@ -1220,6 +1220,10 @@ dirvote_add_vote(const char *vote_body, const char **msg_out, int *status_out)
     trusted_dirs_load_certs_from_string(
                                vote->cert->cache_info.signed_descriptor_body,
                                0 /* from_store */);
+    if (!authority_cert_get_by_digests(vote->cert->cache_info.identity_digest,
+                                       vote->cert->signing_key_digest)) {
+      log_warn(LD_BUG, "We added a cert, but still couldn't find it.");
+    }
   }
 
   /* XXXX020 check times; make sure epochs match. */