Skip to content
Snippets Groups Projects
Commit 0b1df93d authored by ale's avatar ale
Browse files

Revert "Try setting common NameUsed prerequisite in dynamic DNS update"

This reverts commit d75bc5be.

Likely unnecessary.
parent d75bc5be
No related branches found
No related tags found
No related merge requests found
Pipeline #67555 passed with warnings
......@@ -66,10 +66,8 @@ func (d *dnsValidator) makeMsg(zone string, rrs []dns.RR, remove bool) *dns.Msg
m := new(dns.Msg)
m.SetUpdate(zone)
if remove {
m.NameUsed(rrs)
m.Remove(rrs)
} else {
m.NameUsed(rrs)
m.RemoveRRset(rrs)
m.Insert(rrs)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment