Skip to content
GitLab
Menu
Projects
Groups
Snippets
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
ab7a6782
Commit
ab7a6782
authored
Feb 07, 2013
by
JINMEI Tatuya
Browse files
dig +nssearch now prints name servers that don't have address records.
parent
3d2e052e
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
ab7a6782
3482. [func] dig +nssearch now prints name servers that don't
have address records (missing AAAA or A, or the name
doesn't exist). [RT #29348]
3481. [cleanup] removed use of const const in atf
3480. [bug] Silence logging noise when setting up zone
...
...
bin/dig/dighost.c
View file @
ab7a6782
...
...
@@ -1816,8 +1816,8 @@ followup_lookup(dns_message_t *msg, dig_query_t *query, dns_section_t section)
debug
(
"adding server %s"
,
namestr
);
num
=
getaddresses
(
lookup
,
namestr
,
&
lresult
);
if
(
lresult
!=
ISC_R_SUCCESS
)
{
debug
(
"couldn't get address for '%s': %s"
,
namestr
,
isc_result_totext
(
lresult
));
printf
(
"couldn't get address for '%s': %s
\n
"
,
namestr
,
isc_result_totext
(
lresult
));
if
(
addresses_result
==
ISC_R_SUCCESS
)
{
addresses_result
=
lresult
;
strcpy
(
bad_namestr
,
namestr
);
...
...
Write
Preview
Supports
Markdown
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