summaryrefslogtreecommitdiff
path: root/lib/custodian/multiping.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/custodian/multiping.rb')
-rw-r--r--lib/custodian/multiping.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/custodian/multiping.rb b/lib/custodian/multiping.rb
index b800196..8844112 100644
--- a/lib/custodian/multiping.rb
+++ b/lib/custodian/multiping.rb
@@ -1,6 +1,6 @@
require 'getoptlong'
-require 'custodian/dnsutil'
+require 'custodian/util/dns'
#
# This class has methods to determine whether the target
@@ -21,7 +21,7 @@ class MultiPing
#
def initialize( hostname )
@hostname = hostname
- @resolved = DNSUtil.hostname_to_ip( hostname )
+ @resolved = Custodian::Util::DNS.hostname_to_ip( hostname )
end