diff options
author | 2024-08-19 11:35:08 +0000 | |
---|---|---|
committer | 2024-08-19 11:35:08 +0000 | |
commit | c78c3d5ed9c960340766ae5f66f4e7a86bb39855 (patch) | |
tree | 19f48a1b2c11e2d6f90862655177113caf4b3df2 /vendor/github.com/miekg/dns/zduplicate.go | |
parent | [chore]: Bump github.com/minio/minio-go/v7 from 7.0.74 to 7.0.75 (#3208) (diff) | |
download | gotosocial-c78c3d5ed9c960340766ae5f66f4e7a86bb39855.tar.xz |
[chore]: Bump github.com/miekg/dns from 1.1.61 to 1.1.62 (#3209)
Diffstat (limited to 'vendor/github.com/miekg/dns/zduplicate.go')
-rw-r--r-- | vendor/github.com/miekg/dns/zduplicate.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/miekg/dns/zduplicate.go b/vendor/github.com/miekg/dns/zduplicate.go index 03029fb3e..330c05395 100644 --- a/vendor/github.com/miekg/dns/zduplicate.go +++ b/vendor/github.com/miekg/dns/zduplicate.go @@ -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 { |