[tor-commits] [tor/maint-0.2.9] protover: Fix old tor hardcoded version check

nickm at torproject.org nickm at torproject.org
Fri Dec 2 17:10:47 UTC 2016


commit 907cd8a0cfb6da08450902ebb2f21db3cd65e7f7
Author: David Goulet <dgoulet at torproject.org>
Date:   Mon Nov 28 10:58:03 2016 -0500

    protover: Fix old tor hardcoded version check
    
    When computing old Tor protocol line version in protover, we were looking at
    0.2.7.5 twice instead of the specific case for 0.2.9.1-alpha.
    
    Fixes #20810
    
    Signed-off-by: David Goulet <dgoulet at torproject.org>
---
 changes/bug20810  | 4 ++++
 src/or/protover.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/changes/bug20810 b/changes/bug20810
new file mode 100644
index 0000000..5420a73
--- /dev/null
+++ b/changes/bug20810
@@ -0,0 +1,4 @@
+  o Minor bugfixes (relay)
+    - When computing old Tor protocol line version in protover, we were
+      looking at 0.2.7.5 twice instead of a specific case for 0.2.9.1-alpha.
+      Bugfix on tor-0.2.9.4-alpha.
diff --git a/src/or/protover.c b/src/or/protover.c
index 4d7e9f6..0a4d4fb 100644
--- a/src/or/protover.c
+++ b/src/or/protover.c
@@ -697,7 +697,7 @@ protover_compute_for_old_tor(const char *version)
   if (tor_version_as_new_as(version,
                             FIRST_TOR_VERSION_TO_ADVERTISE_PROTOCOLS)) {
     return "";
-  } else if (tor_version_as_new_as(version, "0.2.7.5")) {
+  } else if (tor_version_as_new_as(version, "0.2.9.1-alpha")) {
     /* 0.2.9.1-alpha HSRend=2 */
     return "Cons=1-2 Desc=1-2 DirCache=1 HSDir=1 HSIntro=3 HSRend=1-2 "
       "Link=1-4 LinkAuth=1 "



More information about the tor-commits mailing list