2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

411. [bug] A typo in the HS A code caused an assertion failure.

This commit is contained in:
Brian Wellington
2000-08-28 17:39:21 +00:00
parent 42aea0fbdc
commit 37a8fbab3a
2 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,6 @@
411. [bug] A typo in the HS A code caused an assertion failure.
410. [bug] lwres_gethostbyname() and company set lwres_h_errno
to a random value on success.

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: a_1.c,v 1.16 2000/08/01 01:26:13 tale Exp $ */
/* $Id: a_1.c,v 1.17 2000/08/28 17:39:21 bwelling Exp $ */
/* reviewed: Thu Mar 16 15:58:36 PST 2000 by brister */
@@ -116,7 +116,7 @@ compare_hs_a(ARGS_COMPARE) {
int order;
REQUIRE(rdata1->type == rdata2->type);
REQUIRE(rdata1->rdclass == rdata2->type);
REQUIRE(rdata1->rdclass == rdata2->rdclass);
REQUIRE(rdata1->type == 1);
REQUIRE(rdata1->rdclass == 4);