2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-05 09:05:40 +00:00

1999. [func] Implement "rrset-order fixed". [RT #13662]

This commit is contained in:
Mark Andrews
2006-03-03 00:43:35 +00:00
parent fb9395c8dd
commit d76ed813a5
48 changed files with 944 additions and 86 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: update.c,v 1.127 2006/01/06 00:01:44 marka Exp $ */
/* $Id: update.c,v 1.128 2006/03/03 00:43:34 marka Exp $ */
#include <config.h>
@@ -1311,8 +1311,8 @@ static isc_result_t
namelist_append_name(dns_diff_t *list, dns_name_t *name) {
isc_result_t result;
dns_difftuple_t *tuple = NULL;
static dns_rdata_t dummy_rdata = { NULL, 0, 0, 0, 0,
{ (void*)(-1), (void*)(-1) } };
static dns_rdata_t dummy_rdata = DNS_RDATA_INIT;
CHECK(dns_difftuple_create(list->mctx, DNS_DIFFOP_EXISTS, name, 0,
&dummy_rdata, &tuple));
dns_diff_append(list, &tuple);