mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
Fix typo in nsupdate where covers would be equal to type
There was an apparent typo where rdatalist->covers would be assigned the same value as rdatalist->type. As nsupdate can't update signatures, the covers must be dns_rdatatype_none.
This commit is contained in:
@@ -2084,7 +2084,7 @@ doneparsing:
|
||||
dns_message_gettemprdataset(updatemsg, &rdataset);
|
||||
rdatalist->type = rdatatype;
|
||||
rdatalist->rdclass = rdataclass;
|
||||
rdatalist->covers = rdatatype;
|
||||
rdatalist->covers = dns_rdatatype_none;
|
||||
rdatalist->ttl = (dns_ttl_t)ttl;
|
||||
ISC_LIST_APPEND(rdatalist->rdata, rdata, link);
|
||||
dns_rdatalist_tordataset(rdatalist, rdataset);
|
||||
|
Reference in New Issue
Block a user