diff options
author | Roger Dingledine <arma@torproject.org> | 2014-03-23 02:53:08 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2014-03-23 02:53:08 -0400 |
commit | ddaeb4deee7b2a7772baac9a09abc54b689d8437 (patch) | |
tree | d9930a2981b5858ecc98f0c496d41b8a67ef1f5f /src/or/dirserv.c | |
parent | f560eeadc38f3146f17c55b0d00799b3ee7d5acf (diff) | |
download | tor-ddaeb4deee7b2a7772baac9a09abc54b689d8437.tar.gz tor-ddaeb4deee7b2a7772baac9a09abc54b689d8437.zip |
Be more lenient in our fix for bug 11149
There are still quite a few 0.2.3.2x relays running for x<5, and while I
agree they should upgrade, I don't think cutting them out of the network
is a net win on either side.
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r-- | src/or/dirserv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 234209d210..19ed12d7c1 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -374,9 +374,9 @@ dirserv_get_status_impl(const char *id_digest, const char *nickname, strmap_size(fingerprint_list->fp_by_name), digestmap_size(fingerprint_list->status_by_digest)); - /* Versions before Tor 0.2.3.25 are too old to support, and aren't - * getting any more security fixes. Disable them. */ - if (platform && !tor_version_as_new_as(platform,"0.2.3.25")) { + /* Versions before Tor 0.2.3.16-alpha are too old to support, and are + * missing some important security fixes too. Disable them. */ + if (platform && !tor_version_as_new_as(platform,"0.2.3.16-alpha")) { if (msg) *msg = "Tor version is insecure or unsupported. Please upgrade!"; return FP_REJECT; |