2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +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

@@ -15,7 +15,7 @@
* 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 */
@@ -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");