mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 08:40:00 -04:00
Fix number of args to rpz_log_rewrite()
This commit is contained in:
parent
e3befb38c9
commit
509856d414
1 changed files with 2 additions and 2 deletions
|
|
@ -6600,7 +6600,7 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype)
|
|||
rpz_log_rewrite(client, ISC_FALSE,
|
||||
rpz_st->m.policy,
|
||||
rpz_st->m.type, zone,
|
||||
rpz_st->p_name, NULL);
|
||||
rpz_st->p_name);
|
||||
goto cleanup;
|
||||
case DNS_RPZ_POLICY_NODATA:
|
||||
/*
|
||||
|
|
@ -6611,7 +6611,7 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype)
|
|||
rpz_log_rewrite(client, ISC_FALSE,
|
||||
rpz_st->m.policy,
|
||||
rpz_st->m.type, zone,
|
||||
rpz_st->p_name, NULL);
|
||||
rpz_st->p_name);
|
||||
goto cleanup;
|
||||
case DNS_RPZ_POLICY_RECORD:
|
||||
result = rpz_st->m.result;
|
||||
|
|
|
|||
Loading…
Reference in a new issue