aboutsummaryrefslogtreecommitdiffstats
path: root/lib/resolv.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-30 07:16:14 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-30 07:16:14 +0000
commit69a7bb31f917bd68d78460216aa2ef274428790e (patch)
treefd66f4aafba8736937b0421153cf48570214c76c /lib/resolv.rb
parent1441d9da990e432ac2d08389f7973684316d8664 (diff)
downloadruby-69a7bb31f917bd68d78460216aa2ef274428790e.tar.gz
resolv.rb: case-insensitive comparison
* lib/resolv.rb (Resolv::DNS::Name#==): DNS is case-insensitive, so the comparison should be case-insensitive as well. [ruby-core:66498] [Bug #10550] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/resolv.rb')
-rw-r--r--lib/resolv.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/resolv.rb b/lib/resolv.rb
index f6971bf500..5a4c0ebdc8 100644
--- a/lib/resolv.rb
+++ b/lib/resolv.rb
@@ -1236,8 +1236,8 @@ class Resolv
def ==(other) # :nodoc:
return false unless Name === other
- return @labels.join('.') == other.to_a.join('.') &&
- @absolute == other.absolute?
+ return false unless @absolute == other.absolute?
+ return @labels.join('.').casecmp(other.to_a.join('.')).zero?
end
alias eql? == # :nodoc: