diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-15 13:49:26 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-15 13:49:26 +0000 |
commit | 9f03fc2133a05f5728bcba08fbdf4cb0df1a6824 (patch) | |
tree | 4e3bc4d54efea4574aba59a2feb050248d27e128 /lib/custodian | |
parent | d7ad8339d42818df24e5e8c0e508a6caf96c3e78 (diff) |
Fixed bug with whitespace
Diffstat (limited to 'lib/custodian')
-rwxr-xr-x | lib/custodian/protocol-tests/dns.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocol-tests/dns.rb b/lib/custodian/protocol-tests/dns.rb index a3396de..50100ac 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.pushResolv.getaddresses(r.name.to_s()) } + dns.getresources(name, Resolv::DNS::Resource::IN::MX).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()) } |