]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Say that bug4438 was a fix on 0.2.1.9-alpha.
authorNick Mathewson <nickm@torproject.org>
Wed, 28 Mar 2012 14:41:12 +0000 (10:41 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 28 Mar 2012 14:41:12 +0000 (10:41 -0400)
Specifically, it was a fix on 33e2053ebca5d, where we introduced the
WRA_* and ROUTER_* codes for dirserv_add_descriptor.  Previously, we
had checked for a _negative_ return from dirserv_add_descriptor, which
meant "rejected".  An insufficiently new descriptor would give a
0-valued return.  But when we switched from numbers to enums, we got
this check wrong and had init_keys() give an error whenever the
descriptor wasn't accepted.

changes/bug4438

index f6d0c49e3be68e29abf14ae7d770de55c0b94bd9..94690e18e075676203b2eeabdd1c96825218dae0 100644 (file)
@@ -2,5 +2,5 @@
     - Fix a dirauth-only exit on sighup that could happen during some
       configuration state transitions. We now don't treat it as a fatal
       error when the new descriptor we just generated in init_keys
-      isn't accepted. Fixes bug 4438; bugfix on FIXME.
+      isn't accepted. Fixes bug 4438; bugfix on 0.2.1.9-alpha.