diff options
author | Alexander Færøy <ahf@torproject.org> | 2021-05-10 10:58:29 +0000 |
---|---|---|
committer | Alexander Færøy <ahf@torproject.org> | 2021-05-10 10:58:29 +0000 |
commit | a56ed0cfa4444bc6434e19962cf8f3f726958c0f (patch) | |
tree | 34734f8077d55ecc7e218a8530cc2429aa2f0a96 | |
parent | 4e62c171144c1b4a1cb1447d86a177655f90c0b6 (diff) | |
parent | f20f5a4e376d254e069fed66a321bc9cdd537096 (diff) | |
download | tor-a56ed0cfa4444bc6434e19962cf8f3f726958c0f.tar.gz tor-a56ed0cfa4444bc6434e19962cf8f3f726958c0f.zip |
Merge remote-tracking branch 'tor-gitlab/mr/369'
-rw-r--r-- | changes/bug40371 | 6 | ||||
-rw-r--r-- | src/feature/relay/dns.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/changes/bug40371 b/changes/bug40371 new file mode 100644 index 0000000000..8cc7117f9f --- /dev/null +++ b/changes/bug40371 @@ -0,0 +1,6 @@ + o Minor bugfixes (compatibility): + - Fix compatibility with the most recent Libevent versions, which + no longer have an evdns_set_random_bytes() function. Because + this function has been a no-op since Libevent 2.0.4-alpha, + it is safe for us to just stop calling it. Fixes bug 40371; + bugfix on 0.2.1.7-alpha. diff --git a/src/feature/relay/dns.c b/src/feature/relay/dns.c index 22f929808e..67317000b6 100644 --- a/src/feature/relay/dns.c +++ b/src/feature/relay/dns.c @@ -225,7 +225,6 @@ int dns_init(void) { init_cache_map(); - evdns_set_random_bytes_fn(dns_randfn_); if (server_mode(get_options())) { int r = configure_nameservers(1); return r; |