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:
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
|
||||
|
Reference in New Issue
Block a user