[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r10853: bugfix on r10086: We had accidentally labelled 0.1.2.x direc (in tor/trunk: . src/or)



Author: arma
Date: 2007-07-17 05:37:00 -0400 (Tue, 17 Jul 2007)
New Revision: 10853

Modified:
   tor/trunk/ChangeLog
   tor/trunk/src/or/routerparse.c
Log:
bugfix on r10086:
We had accidentally labelled 0.1.2.x directory servers as not
suitable for begin_dir requests, and had labelled no directory
servers as suitable for uploading extra-info documents. [Bugfix
on 0.2.0.1-alpha]


Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog	2007-07-17 09:30:39 UTC (rev 10852)
+++ tor/trunk/ChangeLog	2007-07-17 09:37:00 UTC (rev 10853)
@@ -50,6 +50,10 @@
     - Directories no longer return a "304 not modified" when they don't
       have the networkstatus the client asked for. Also fix a memory
       leak when returning 304 not modified. [Bugfixes on 0.2.0.2-alpha]
+    - We had accidentally labelled 0.1.2.x directory servers as not
+      suitable for begin_dir requests, and had labelled no directory
+      servers as suitable for uploading extra-info documents. [Bugfix
+      on 0.2.0.1-alpha]
 
   o Minor bugfixes (dns):
     - Fix a crash when DNSPort is set more than once. (Patch from Robert

Modified: tor/trunk/src/or/routerparse.c
===================================================================
--- tor/trunk/src/or/routerparse.c	2007-07-17 09:30:39 UTC (rev 10852)
+++ tor/trunk/src/or/routerparse.c	2007-07-17 09:37:00 UTC (rev 10853)
@@ -1551,7 +1551,7 @@
     } else {
       rs->version_supports_begindir =
         tor_version_as_new_as(tok->args[0], "0.1.2.2-alpha");
-      rs->version_supports_begindir =
+      rs->version_supports_extrainfo_upload =
         tor_version_as_new_as(tok->args[0], "0.2.0.0-alpha-dev (r10070)");
     }
     if (vote_rs) {