mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-01 08:22:25 -05:00
[chore]: Bump github.com/miekg/dns from 1.1.61 to 1.1.62 (#3209)
This commit is contained in:
parent
c28a18b680
commit
c78c3d5ed9
10 changed files with 89 additions and 30 deletions
9
vendor/github.com/miekg/dns/zduplicate.go
generated
vendored
9
vendor/github.com/miekg/dns/zduplicate.go
generated
vendored
|
|
@ -886,6 +886,15 @@ func (r1 *NULL) isDuplicate(_r2 RR) bool {
|
|||
return true
|
||||
}
|
||||
|
||||
func (r1 *NXNAME) isDuplicate(_r2 RR) bool {
|
||||
r2, ok := _r2.(*NXNAME)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
_ = r2
|
||||
return true
|
||||
}
|
||||
|
||||
func (r1 *NXT) isDuplicate(_r2 RR) bool {
|
||||
r2, ok := _r2.(*NXT)
|
||||
if !ok {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue