mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 20:40:00 -04: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:
parent
101b1e5a57
commit
f7143dca3f
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue