Skip to content
Snippets Groups Projects
Commit ba1b04c7 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

r9158@totoro: nickm | 2006-10-24 16:50:18 -0400

 Oops on last authority patch: handle routers with unrecognized fingerprints correctly


svn:r8819
parent 3d0bac07
No related branches found
No related tags found
No related merge requests found
......@@ -348,7 +348,8 @@ dirserv_get_status_impl(const char *id_digest, const char *nickname,
}
status_by_digest = digestmap_get(fingerprint_list->status_by_digest,
id_digest);
result |= (status_by_digest->status & ~FP_NAMED);
if (status_by_digest)
result |= (status_by_digest->status & ~FP_NAMED);
if (result & FP_REJECT) {
if (msg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment