mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
unbound: update to 1.8.0
- adjust a few UCI translations to coordinate with upstream defaults - remove OpenSSL < 1.1.0 API log error patch which is included upstream Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
This commit is contained in:
@@ -1,48 +0,0 @@
|
||||
Index: daemon/remote.c
|
||||
===================================================================
|
||||
--- a/daemon/remote.c
|
||||
+++ b/daemon/remote.c
|
||||
@@ -1950,6 +1950,11 @@
|
||||
return NULL;
|
||||
}
|
||||
} else {
|
||||
+#ifndef HAVE_SSL_SET1_HOST
|
||||
+ if(auth_name)
|
||||
+ log_err("no name verification functionality in "
|
||||
+ "ssl library, ignored name for %s", todo);
|
||||
+#endif
|
||||
/* add address */
|
||||
if(!delegpt_add_addr_mlc(dp, &addr, addrlen, 0, 0,
|
||||
auth_name)) {
|
||||
Index: iterator/iter_fwd.c
|
||||
===================================================================
|
||||
--- a/iterator/iter_fwd.c
|
||||
+++ b/iterator/iter_fwd.c
|
||||
@@ -239,6 +239,11 @@
|
||||
s->name, p->str);
|
||||
return 0;
|
||||
}
|
||||
+#ifndef HAVE_SSL_SET1_HOST
|
||||
+ if(tls_auth_name)
|
||||
+ log_err("no name verification functionality in "
|
||||
+ "ssl library, ignored name for %s", p->str);
|
||||
+#endif
|
||||
if(!delegpt_add_addr_mlc(dp, &addr, addrlen, 0, 0,
|
||||
tls_auth_name)) {
|
||||
log_err("out of memory");
|
||||
Index: iterator/iter_hints.c
|
||||
===================================================================
|
||||
--- a/iterator/iter_hints.c
|
||||
+++ b/iterator/iter_hints.c
|
||||
@@ -252,6 +252,11 @@
|
||||
s->name, p->str);
|
||||
return 0;
|
||||
}
|
||||
+#ifndef HAVE_SSL_SET1_HOST
|
||||
+ if(auth_name)
|
||||
+ log_err("no name verification functionality in "
|
||||
+ "ssl library, ignored name for %s", p->str);
|
||||
+#endif
|
||||
if(!delegpt_add_addr_mlc(dp, &addr, addrlen, 0, 0,
|
||||
auth_name)) {
|
||||
log_err("out of memory");
|
||||
Reference in New Issue
Block a user