]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r15780@catbus: nickm | 2007-10-15 10:35:16 -0400
authorNick Mathewson <nickm@torproject.org>
Mon, 15 Oct 2007 14:59:44 +0000 (14:59 +0000)
committerNick Mathewson <nickm@torproject.org>
Mon, 15 Oct 2007 14:59:44 +0000 (14:59 +0000)
 Fix the implementation of "download votes by digest".

svn:r11943

ChangeLog
src/or/directory.c

index 3e20efde12438592916345df7c0cb3c449c4328d..1f29a9b21c29b785e0fefd19a284459982f023b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,10 @@ Changes in version 0.2.0.9-alpha - 2007-10-??
       than 28 days unmodified, then most likely it's a leftover from when we
       upgraded to 0.2.0.8-alpha.  Remove it.  It has no good routers anyway.
 
+  o Minor bugfixes:
+    - Correct the implementation of "download votes by digest."  Bugfix on
+      0.2.0.8-alpha.
+
   o Code simplifications and refactoring:
     - Remove support for the old bw_accounting file: we've been storing
       bandwidth accounting information in the state file since 0.1.2.5-alpha.
index d949ebb1ed737a1817f46d4b650b187e5e2e1b1c..22a15ec8ff1f7e4ad00140dc7b664e7faec8cfe4 100644 (file)
@@ -2189,7 +2189,7 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers,
       int flags;
       if (!strcmpstart(url, "d/")) {
         url += 2;
-        flags = DGV_BY_ID | DGV_INCLUDE_PENDING | DGV_INCLUDE_PREVIOUS;
+        flags = DGV_INCLUDE_PENDING | DGV_INCLUDE_PREVIOUS;
       } else {
         flags = DGV_BY_ID |
           (current ? DGV_INCLUDE_PREVIOUS : DGV_INCLUDE_PENDING);