Skip to content
GitLab
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
9a33e2d1
Commit
9a33e2d1
authored
Jan 06, 2006
by
Mark Andrews
Browse files
I1965. [func] Suppress spurious "recusion requested but not
available" warning with 'dig +qr'. [RT #15780].
parent
1b06367c
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
9a33e2d1
1965. [func] Suppress spurious "recusion requested but not
available" warning with 'dig +qr'. [RT #15780].
1964. [func] Seperate out MX and SRV to CNAME checks. [RT #15723]
1963. [port] Tru64 4.0E doesn't support send() and recv().
...
...
bin/dig/dig.c
View file @
9a33e2d1
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: dig.c,v 1.20
8
200
5/10/14
0
1
:1
4:06
marka Exp $ */
/* $Id: dig.c,v 1.20
9
200
6/01/06
0
0
:1
3:30
marka Exp $ */
/*! \file */
...
...
@@ -491,7 +491,8 @@ printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) {
msg
->
counts
[
DNS_SECTION_AUTHORITY
],
msg
->
counts
[
DNS_SECTION_ADDITIONAL
]);
if
((
msg
->
flags
&
DNS_MESSAGEFLAG_RD
)
!=
0
&&
if
(
msg
!=
query
->
lookup
->
sendmsg
&&
(
msg
->
flags
&
DNS_MESSAGEFLAG_RD
)
!=
0
&&
(
msg
->
flags
&
DNS_MESSAGEFLAG_RA
)
==
0
)
printf
(
";; WARNING: recusion requested "
"but not available
\n
"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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