o Bugfixes:
- Asking for a conditional consensus at .../consensus/<fingerprints>
would crash a dirserver if it did not already have a consensus.
- - Clean up some macro/cpp interactions.
+ - Clean up some macro/CPP interactions: some GCC versions don't like
+ #if/#endif pairs inside macro arguments. Fixes bug 707.
+
Changes in version 0.2.1.1-alpha - 2008-06-13
o Major features:
r->cache_info.signed_descriptor_digest);
tor_assert(&(r->cache_info) == sd2);
tor_assert(r->cache_info.routerlist_index == r_sl_idx);
-#if 0
/* XXXX021.
*
* Hoo boy. We need to fix this one, and the fix is a bit tricky, so
* reset our retry count for an extrainfo, but that's not the end
* of the world. Changing the representation in 0.2.0.x would just
* destabilize the codebase.
- */
if (!tor_digest_is_zero(r->cache_info.extra_info_digest)) {
signed_descriptor_t *sd3 =
sdmap_get(rl->desc_by_eid_map, r->cache_info.extra_info_digest);
tor_assert(sd3 == &(r->cache_info));
}
-#endif
+ */
});
SMARTLIST_FOREACH(rl->old_routers, signed_descriptor_t *, sd,
{
sd2 = sdmap_get(rl->desc_digest_map, sd->signed_descriptor_digest);
tor_assert(sd == sd2);
tor_assert(sd->routerlist_index == sd_sl_idx);
-#if 0
- /* XXXX021 see above. */
+ /* XXXX021 see above.
if (!tor_digest_is_zero(sd->extra_info_digest)) {
signed_descriptor_t *sd3 =
sdmap_get(rl->desc_by_eid_map, sd->extra_info_digest);
tor_assert(sd3 == sd);
}
-#endif
+ */
});
RIMAP_FOREACH(rl->identity_map, d, r) {