mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 05:57:52 +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:
parent
32b4a9a3e0
commit
e9bd1496ed
3
CHANGES
3
CHANGES
@ -1,3 +1,6 @@
|
||||
4427. [bug] The "query" and "response" parameters to the
|
||||
"dnstap" option had their functions reversed.
|
||||
|
||||
--- 9.11.0b3 released ---
|
||||
|
||||
4426. [bug] Addressed Coverity warnings. [RT #42908]
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user