mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-02 23:55:27 +00:00
411. [bug] A typo in the HS A code caused an assertion failure.
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -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
|
410. [bug] lwres_gethostbyname() and company set lwres_h_errno
|
||||||
to a random value on success.
|
to a random value on success.
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* 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 */
|
/* reviewed: Thu Mar 16 15:58:36 PST 2000 by brister */
|
||||||
|
|
||||||
@@ -116,7 +116,7 @@ compare_hs_a(ARGS_COMPARE) {
|
|||||||
int order;
|
int order;
|
||||||
|
|
||||||
REQUIRE(rdata1->type == rdata2->type);
|
REQUIRE(rdata1->type == rdata2->type);
|
||||||
REQUIRE(rdata1->rdclass == rdata2->type);
|
REQUIRE(rdata1->rdclass == rdata2->rdclass);
|
||||||
REQUIRE(rdata1->type == 1);
|
REQUIRE(rdata1->type == 1);
|
||||||
REQUIRE(rdata1->rdclass == 4);
|
REQUIRE(rdata1->rdclass == 4);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user