From d15296824ca44ad0400e89048bdf2bb3d9468b59 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 4 Jul 2020 16:32:13 +0530 Subject: [PATCH] AuthZone: using SetGlueRecords() which is correct glue record copy operation in SyncRecords(). --- DnsServerCore/Dns/Zones/AuthZone.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DnsServerCore/Dns/Zones/AuthZone.cs b/DnsServerCore/Dns/Zones/AuthZone.cs index 7ca7ca6d..e600766d 100644 --- a/DnsServerCore/Dns/Zones/AuthZone.cs +++ b/DnsServerCore/Dns/Zones/AuthZone.cs @@ -270,7 +270,7 @@ namespace DnsServerCore.Dns.Zones if ((this is SecondaryZone) || (this is StubZone)) { //copy existing SOA record's glue addresses to new SOA record - newEntry.Value[0].SyncGlueRecords(_entries[DnsResourceRecordType.SOA][0].GetGlueRecords()); + newEntry.Value[0].SetGlueRecords(_entries[DnsResourceRecordType.SOA][0].GetGlueRecords()); } }