mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
2672. [bug] Don't enable searching in 'host' when doing reverse
lookups. [RT #20218]
This commit is contained in:
parent
523598fafa
commit
14cd8ac04c
2 changed files with 5 additions and 3 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
2672. [bug] Don't enable searching in 'host' when doing reverse
|
||||
lookups. [RT #20218]
|
||||
|
||||
--- 9.7.0a3 released ---
|
||||
|
||||
2671. [bug] Add support for PKCS#11 providers not returning
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: host.c,v 1.118 2009/05/06 23:47:50 tbox Exp $ */
|
||||
/* $Id: host.c,v 1.119 2009/09/08 23:23:22 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -839,11 +839,10 @@ parse_args(isc_boolean_t is_batchfile, int argc, char **argv) {
|
|||
} else {
|
||||
strncpy(lookup->textname, hostname, sizeof(lookup->textname));
|
||||
lookup->textname[sizeof(lookup->textname)-1]=0;
|
||||
usesearch = ISC_TRUE;
|
||||
}
|
||||
lookup->new_search = ISC_TRUE;
|
||||
ISC_LIST_APPEND(lookup_list, lookup, link);
|
||||
|
||||
usesearch = ISC_TRUE;
|
||||
}
|
||||
|
||||
int
|
||||
|
|
|
|||
Loading…
Reference in a new issue