mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
1749. [bug] 'check-names response ignore;' failed to ignore.
[RT #12866]
This commit is contained in:
parent
81e6a5849d
commit
21094b43a2
2 changed files with 4 additions and 3 deletions
3
CHANGES
3
CHANGES
|
|
@ -3,7 +3,8 @@
|
|||
1750. [port] lib/bind/make/rules.in:subdirs was not bash friendly.
|
||||
[RT #12864]
|
||||
|
||||
1749. [placeholder] rt12866
|
||||
1749. [bug] 'check-names response ignore;' failed to ignore.
|
||||
[RT #12866]
|
||||
|
||||
1748. [func] dig now returns the byte count for axfr/ixfr.
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: resolver.c,v 1.295 2004/09/16 02:10:42 marka Exp $ */
|
||||
/* $Id: resolver.c,v 1.296 2004/10/21 01:53:44 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -5251,7 +5251,7 @@ resquery_response(isc_task_t *task, isc_event_t *event) {
|
|||
domainbuf, namebuf, typebuf, classbuf, addrbuf);
|
||||
}
|
||||
|
||||
if ((fctx->res->options | DNS_RESOLVER_CHECKNAMES) != 0)
|
||||
if ((fctx->res->options & DNS_RESOLVER_CHECKNAMES) != 0)
|
||||
checknames(message);
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue