mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
[master] fix dnstap query/response selectors
4427. [bug] The "query" and "response" parameters to the "dnstap" option had their functions reversed.
This commit is contained in:
@@ -2976,9 +2976,9 @@ configure_dnstap(const cfg_obj_t **maps, dns_view_t *view) {
|
||||
}
|
||||
|
||||
str = cfg_obj_asstring(obj2);
|
||||
if (strcasecmp(str, "query")) {
|
||||
if (strcasecmp(str, "query") == 0) {
|
||||
dt &= ~DNS_DTTYPE_RESPONSE;
|
||||
} else if (strcasecmp(str, "response")) {
|
||||
} else if (strcasecmp(str, "response") == 0) {
|
||||
dt &= ~DNS_DTTYPE_QUERY;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user