summaryrefslogtreecommitdiff
path: root/lib/custodian/protocol-tests
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-15 14:03:35 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-15 14:03:35 +0000
commit3a9735c0c7320b593f318dcc816b2d54b7c6f319 (patch)
tree20fbbc0af06f4ae8112dc2710ed2609a40e5bfc1 /lib/custodian/protocol-tests
parenta76474c7228a1e47e7fc4581af5e1ca74a38213d (diff)
Use the correct DNS-type for Nameserver records.
Diffstat (limited to 'lib/custodian/protocol-tests')
-rwxr-xr-xlib/custodian/protocol-tests/dns.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocol-tests/dns.rb b/lib/custodian/protocol-tests/dns.rb
index 50100ac..3d9f9fd 100755
--- a/lib/custodian/protocol-tests/dns.rb
+++ b/lib/custodian/protocol-tests/dns.rb
@@ -143,7 +143,7 @@ class DNSTest
dns.getresources(name, Resolv::DNS::Resource::IN::AAAA).map{ |r| results.push r.address.to_s() }
when /^NS$/ then
- dns.getresources(name, Resolv::DNS::Resource::IN::MX).map{ |r| results.push Resolv.getaddresses(r.name.to_s()) }
+ dns.getresources(name, Resolv::DNS::Resource::IN::NS).map{ |r| results.push Resolv.getaddresses(r.name.to_s()) }
when /^MX$/ then
dns.getresources(name, Resolv::DNS::Resource::IN::MX).map{ |r| results.push Resolv.getaddresses(r.exchange.to_s()) }