2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

CHANGES entry

typo fix.
This commit is contained in:
Michael Sawyer
2000-12-08 17:50:47 +00:00
parent e194ad59ee
commit 8fa78d9ad5
2 changed files with 6 additions and 3 deletions

View File

@@ -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
IN6_IS_ADDR_* macros. [RT #539]

View File

@@ -15,7 +15,7 @@
* 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
@@ -414,8 +414,8 @@ clone_lookup(dig_lookup_t *lookold, isc_boolean_t servers) {
looknew->textname[MXNAME-1]=0;
looknew->rdtype = lookold->rdtype;
looknew->rdclass = lookold->rdclass;
looknew->rdtype = lookold->rdtypeset;
looknew->rdclass = lookold->rdclassset;
looknew->rdtypeset = lookold->rdtypeset;
looknew->rdclassset = lookold->rdclassset;
looknew->doing_xfr = lookold->doing_xfr;
looknew->ixfr_serial = lookold->ixfr_serial;
looknew->defname = lookold->defname;