2
0
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:
Mark Andrews
2006-01-06 00:13:30 +00:00
parent 1b06367c34
commit 9a33e2d135
2 changed files with 6 additions and 2 deletions

View File

@@ -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().

View File

@@ -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");