mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 00:29:58 -05:00
- Fix #4206: OpenSSL 1.0.2 hostname verification for FreeBSD 11.2.
git-svn-id: file:///svn/unbound/trunk@5106 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
e43c3daec2
commit
20d57ec58b
4 changed files with 6 additions and 3 deletions
|
|
@ -1987,7 +1987,7 @@ parse_delegpt(RES* ssl, char* args, uint8_t* nm, int allow_names)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
#ifndef HAVE_SSL_SET1_HOST
|
#if ! defined(HAVE_SSL_SET1_HOST) && ! defined(HAVE_X509_VERIFY_PARAM_SET1_HOST)
|
||||||
if(auth_name)
|
if(auth_name)
|
||||||
log_err("no name verification functionality in "
|
log_err("no name verification functionality in "
|
||||||
"ssl library, ignored name for %s", todo);
|
"ssl library, ignored name for %s", todo);
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
7 February 2019: Wouter
|
||||||
|
- Fix #4206: OpenSSL 1.0.2 hostname verification for FreeBSD 11.2.
|
||||||
|
|
||||||
4 February 2019: Wouter
|
4 February 2019: Wouter
|
||||||
- Fix that log-replies prints the correct name for local-alias
|
- Fix that log-replies prints the correct name for local-alias
|
||||||
names, for names that have a CNAME in local-data configuration.
|
names, for names that have a CNAME in local-data configuration.
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,7 @@ read_fwds_addr(struct config_stub* s, struct delegpt* dp)
|
||||||
s->name, p->str);
|
s->name, p->str);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#ifndef HAVE_SSL_SET1_HOST
|
#if ! defined(HAVE_SSL_SET1_HOST) && ! defined(HAVE_X509_VERIFY_PARAM_SET1_HOST)
|
||||||
if(tls_auth_name)
|
if(tls_auth_name)
|
||||||
log_err("no name verification functionality in "
|
log_err("no name verification functionality in "
|
||||||
"ssl library, ignored name for %s", p->str);
|
"ssl library, ignored name for %s", p->str);
|
||||||
|
|
|
||||||
|
|
@ -252,7 +252,7 @@ read_stubs_addr(struct config_stub* s, struct delegpt* dp)
|
||||||
s->name, p->str);
|
s->name, p->str);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#ifndef HAVE_SSL_SET1_HOST
|
#if ! defined(HAVE_SSL_SET1_HOST) && ! defined(HAVE_X509_VERIFY_PARAM_SET1_HOST)
|
||||||
if(auth_name)
|
if(auth_name)
|
||||||
log_err("no name verification functionality in "
|
log_err("no name verification functionality in "
|
||||||
"ssl library, ignored name for %s", p->str);
|
"ssl library, ignored name for %s", p->str);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue