- Made Tor a little less aggressive about deleting expired certificates.
Partial fix for bug 854.
- Stop doing unaligned memory access that generated bus errors on
- sparc64. Fix for bug 862.
+ sparc64. Bugfix on 0.2.0.10-alpha. Fix for bug 862.
+ - Fix a crash bug when changing ExcludeNodes from the controller. Bugfix
+ on 0.2.1.6-alpha. Fix for bug 867. Patched by Sebastian.
o Minor features (controller):
- Return circuit purposes in response to GETINFO circuit-status. Fixes
int
routerset_equal(const routerset_t *old, const routerset_t *new)
{
+ if (old == NULL && new == NULL)
+ return 1;
+ else if (old == NULL || new == NULL)
+ return 0;
+
if (smartlist_len(old->list) != smartlist_len(new->list))
return 0;