mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 00:12:04 -04:00
1169. [func] Identify recursive queries in the query log.
This commit is contained in:
parent
77467267d9
commit
9ab461a6ff
2 changed files with 5 additions and 2 deletions
2
CHANGES
2
CHANGES
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue