mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 06:19:59 -04:00
4854. [bug] query_synthcnamewildcard should stop generating the
response if query_synthwildcard fails. [RT #46939]
This commit is contained in:
parent
05612f43a9
commit
c9ee9718ae
2 changed files with 7 additions and 0 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4854. [bug] query_synthcnamewildcard should stop generating the
|
||||
response if query_synthwildcard fails. [RT #46939]
|
||||
|
||||
4853. [bug] Add REQUIRE's and INSIST's to isc_time_formatISO8601L
|
||||
and isc_time_formatISO8601Lms. [RT #46916]
|
||||
|
||||
|
|
|
|||
|
|
@ -8549,6 +8549,10 @@ query_synthcnamewildcard(query_ctx_t *qctx, dns_rdataset_t *rdataset,
|
|||
dns_rdata_cname_t cname;
|
||||
|
||||
result = query_synthwildcard(qctx, rdataset, sigrdataset);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
return (result);
|
||||
}
|
||||
|
||||
qctx->client->query.attributes |= NS_QUERYATTR_PARTIALANSWER;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue