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

1582. [bug] rrset-order failed to work on RRsets with more

than 32 elements. [RT #10381]
This commit is contained in:
Mark Andrews
2004-02-19 01:23:42 +00:00
parent e9964e7db4
commit c569a0e4d5
3 changed files with 32 additions and 17 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: compress.c,v 1.50 2001/06/04 19:32:59 tale Exp $ */
/* $Id: compress.c,v 1.51 2004/02/19 01:23:42 marka Exp $ */
#define DNS_NAME_USEINLINE 1
@@ -45,7 +45,7 @@ dns_compress_init(dns_compress_t *cctx, int edns, isc_mem_t *mctx) {
unsigned int i;
REQUIRE(cctx != NULL);
REQUIRE(mctx != NULL);
REQUIRE(mctx != NULL); /* See: rdataset.c:towiresorted(). */
cctx->allowed = 0;
cctx->edns = edns;