From 21737e85d8f85f8d87feb3325b352096b961601e Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Thu, 7 Oct 1999 19:40:30 +0000 Subject: [PATCH] preserve rr ordering --- lib/dns/master.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dns/master.c b/lib/dns/master.c index 3b7c841765..59ff178508 100644 --- a/lib/dns/master.c +++ b/lib/dns/master.c @@ -15,7 +15,7 @@ * SOFTWARE. */ - /* $Id: master.c,v 1.23 1999/08/31 22:12:14 halley Exp $ */ + /* $Id: master.c,v 1.24 1999/10/07 19:40:30 halley Exp $ */ #include @@ -726,7 +726,7 @@ load(isc_lex_t *lex, dns_name_t *top, dns_name_t *origin, */ if (!on_list(this, &rdata[rdcount])) { - ISC_LIST_PREPEND(this->rdata, &rdata[rdcount], link); + ISC_LIST_APPEND(this->rdata, &rdata[rdcount], link); rdcount++; }