mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-04 16:45:24 +00:00
I1965. [func] Suppress spurious "recusion requested but not
available" warning with 'dig +qr'. [RT #15780].
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -1,3 +1,6 @@
|
|||||||
|
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]
|
1964. [func] Seperate out MX and SRV to CNAME checks. [RT #15723]
|
||||||
|
|
||||||
1963. [port] Tru64 4.0E doesn't support send() and recv().
|
1963. [port] Tru64 4.0E doesn't support send() and recv().
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: dig.c,v 1.208 2005/10/14 01:14:06 marka Exp $ */
|
/* $Id: dig.c,v 1.209 2006/01/06 00:13:30 marka Exp $ */
|
||||||
|
|
||||||
/*! \file */
|
/*! \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_AUTHORITY],
|
||||||
msg->counts[DNS_SECTION_ADDITIONAL]);
|
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)
|
(msg->flags & DNS_MESSAGEFLAG_RA) == 0)
|
||||||
printf(";; WARNING: recusion requested "
|
printf(";; WARNING: recusion requested "
|
||||||
"but not available\n");
|
"but not available\n");
|
||||||
|
Reference in New Issue
Block a user