summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Færøy <ahf@torproject.org>2021-10-20 17:36:07 +0000
committerAlexander Færøy <ahf@torproject.org>2021-10-20 17:36:07 +0000
commit6edc9bcc1376b7a9f31fc54239e9df7fdfa9d044 (patch)
treee7d1473a3f09beb42f16a9649f0861d091e7f1ff
parent07989171e3fead146911e63f24c2dfcabe39c660 (diff)
parent16cbbf04c49715d2ba94e079597aeed284a6398d (diff)
downloadtor-6edc9bcc1376b7a9f31fc54239e9df7fdfa9d044.tar.gz
tor-6edc9bcc1376b7a9f31fc54239e9df7fdfa9d044.zip
Merge branch 'maint-0.4.6' into release-0.4.6
-rw-r--r--changes/bug403716
-rw-r--r--src/feature/relay/dns.c9
2 files changed, 6 insertions, 9 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 ed8d235e92..6a703f2ab3 100644
--- a/src/feature/relay/dns.c
+++ b/src/feature/relay/dns.c
@@ -212,20 +212,11 @@ evdns_log_cb(int warn, const char *msg)
tor_log(severity, LD_EXIT, "eventdns: %s", msg);
}
-/** Helper: passed to eventdns.c as a callback so it can generate random
- * numbers for transaction IDs and 0x20-hack coding. */
-static void
-dns_randfn_(char *b, size_t n)
-{
- crypto_rand(b,n);
-}
-
/** Initialize the DNS subsystem; called by the OR process. */
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;