2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

1169. [func] Identify recursive queries in the query log.

This commit is contained in:
Mark Andrews
2001-12-29 05:31:26 +00:00
parent 77467267d9
commit 9ab461a6ff
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
1169. [func] Identify recursive queries in the query log.
1168. [bug] Empty also-notify clauses were not handled gracefully.
[RT #2309]

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: query.c,v 1.214 2001/11/30 01:58:47 gson Exp $ */
/* $Id: query.c,v 1.215 2001/12/29 05:31:26 marka Exp $ */
#include <config.h>
@@ -3317,7 +3317,8 @@ log_query(ns_client_t *client) {
dns_rdatatype_format(rdataset->type, typename, sizeof(typename));
ns_client_log(client, NS_LOGCATEGORY_QUERIES, NS_LOGMODULE_QUERY,
level, "query: %s %s %s", namebuf, classname, typename);
level, "query: %s %s %s %s", namebuf, classname,
typename, WANTRECURSION(client) ? "+" : "-");
}
void