mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 15:05:23 +00:00
CHANGES entry
typo fix.
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -1,3 +1,6 @@
|
|||||||
|
603. [bug] Make dig handle multiple types or classes on the same
|
||||||
|
query more correctly.
|
||||||
|
|
||||||
602. [func] Cope automatically with UnixWare's broken
|
602. [func] Cope automatically with UnixWare's broken
|
||||||
IN6_IS_ADDR_* macros. [RT #539]
|
IN6_IS_ADDR_* macros. [RT #539]
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: dighost.c,v 1.171 2000/12/08 17:06:48 mws Exp $ */
|
/* $Id: dighost.c,v 1.172 2000/12/08 17:50:47 mws Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Notice to programmers: Do not use this code as an example of how to
|
* Notice to programmers: Do not use this code as an example of how to
|
||||||
@@ -414,8 +414,8 @@ clone_lookup(dig_lookup_t *lookold, isc_boolean_t servers) {
|
|||||||
looknew->textname[MXNAME-1]=0;
|
looknew->textname[MXNAME-1]=0;
|
||||||
looknew->rdtype = lookold->rdtype;
|
looknew->rdtype = lookold->rdtype;
|
||||||
looknew->rdclass = lookold->rdclass;
|
looknew->rdclass = lookold->rdclass;
|
||||||
looknew->rdtype = lookold->rdtypeset;
|
looknew->rdtypeset = lookold->rdtypeset;
|
||||||
looknew->rdclass = lookold->rdclassset;
|
looknew->rdclassset = lookold->rdclassset;
|
||||||
looknew->doing_xfr = lookold->doing_xfr;
|
looknew->doing_xfr = lookold->doing_xfr;
|
||||||
looknew->ixfr_serial = lookold->ixfr_serial;
|
looknew->ixfr_serial = lookold->ixfr_serial;
|
||||||
looknew->defname = lookold->defname;
|
looknew->defname = lookold->defname;
|
||||||
|
Reference in New Issue
Block a user