Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
e3d982f4
Commit
e3d982f4
authored
Nov 10, 2004
by
Mark Andrews
Browse files
1754. [bug] We wern't always attempting to query the parent
server for the DS records at the zone cut. [RT #12774]
parent
71e7ac82
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
e3d982f4
...
...
@@ -22,7 +22,9 @@
1755. [placeholder] rt6636
1754. [placeholder] rt12774
1754. [bug] We wern't always attempting to query the parent
server for the DS records at the zone cut.
[RT #12774]
1753. [bug] Don't serve a slave zone which has no NS records.
[RT #12894]
...
...
lib/dns/resolver.c
View file @
e3d982f4
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: resolver.c,v 1.29
7
2004/11/10 21:
46
:4
8
marka Exp $ */
/* $Id: resolver.c,v 1.29
8
2004/11/10 21:
57
:4
6
marka Exp $ */
#include <config.h>
...
...
@@ -5413,13 +5413,16 @@ resquery_response(isc_task_t *task, isc_event_t *event) {
return
;
}
findoptions
=
0
;
if
(
dns_rdatatype_atparent
(
fctx
->
type
))
findoptions
|=
DNS_DBFIND_NOEXACT
;
if
((
options
&
DNS_FETCHOPT_UNSHARED
)
==
0
)
name
=
&
fctx
->
name
;
else
name
=
&
fctx
->
domain
;
result
=
dns_view_findzonecut
(
fctx
->
res
->
view
,
name
,
fname
,
now
,
0
,
ISC_TRUE
,
now
,
findoptions
,
ISC_TRUE
,
&
fctx
->
nameservers
,
NULL
);
if
(
result
!=
ISC_R_SUCCESS
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment