View | Details | Raw Unified | Return to bug 235571 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	unbound
4
PORTNAME=	unbound
5
PORTVERSION=	1.9.0
5
PORTVERSION=	1.9.0
6
PORTREVISION=	1
6
CATEGORIES=	dns
7
CATEGORIES=	dns
7
MASTER_SITES=	https://www.nlnetlabs.nl/downloads/unbound/ \
8
MASTER_SITES=	https://www.nlnetlabs.nl/downloads/unbound/ \
8
		https://distfiles.crux.guru/
9
		https://distfiles.crux.guru/
(-)files/patch-fix-4206 (+33 lines)
Line 0 Link Here
1
--- daemon/remote.c.orig	2019-01-23 09:35:52 UTC
2
+++ daemon/remote.c
3
@@ -1987,7 +1987,7 @@ parse_delegpt(RES* ssl, char* args, uint8_t* nm, int a
4
 				return NULL;
5
 			}
6
 		} else {
7
-#ifndef HAVE_SSL_SET1_HOST
8
+#if ! defined(HAVE_SSL_SET1_HOST) && ! defined(HAVE_X509_VERIFY_PARAM_SET1_HOST)
9
 			if(auth_name)
10
 			  log_err("no name verification functionality in "
11
 				"ssl library, ignored name for %s", todo);
12
--- iterator/iter_fwd.c.orig	2018-08-09 12:44:40 UTC
13
+++ iterator/iter_fwd.c
14
@@ -239,7 +239,7 @@ read_fwds_addr(struct config_stub* s, struct delegpt* 
15
 				s->name, p->str);
16
 			return 0;
17
 		}
18
-#ifndef HAVE_SSL_SET1_HOST
19
+#if ! defined(HAVE_SSL_SET1_HOST) && ! defined(HAVE_X509_VERIFY_PARAM_SET1_HOST)
20
 		if(tls_auth_name)
21
 			log_err("no name verification functionality in "
22
 				"ssl library, ignored name for %s", p->str);
23
--- iterator/iter_hints.c.orig	2018-08-09 12:44:40 UTC
24
+++ iterator/iter_hints.c
25
@@ -252,7 +252,7 @@ read_stubs_addr(struct config_stub* s, struct delegpt*
26
 				s->name, p->str);
27
 			return 0;
28
 		}
29
-#ifndef HAVE_SSL_SET1_HOST
30
+#if ! defined(HAVE_SSL_SET1_HOST) && ! defined(HAVE_X509_VERIFY_PARAM_SET1_HOST)
31
 		if(auth_name)
32
 			log_err("no name verification functionality in "
33
 				"ssl library, ignored name for %s", p->str);

Return to bug 235571