AuthZone: using SetGlueRecords() which is correct glue record copy operation in SyncRecords().

This commit is contained in:
Shreyas Zare
2020-07-04 16:32:13 +05:30
parent d103e729be
commit d15296824c

View File

@@ -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());
}
}