1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/digest/digest.c (rb_digest_base_equal): Should call digest()

of a subclass instead of the one defined in the base class.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2006-10-12 17:43:17 +00:00
parent 272560359a
commit 53b4c90110
2 changed files with 8 additions and 3 deletions

View file

@ -1,6 +1,11 @@
Fri Oct 13 02:42:00 2006 Akinori MUSHA <knu@iDaemons.org>
* ext/digest/digest.c (rb_digest_base_equal): Should call digest()
of a subclass instead of the one defined in the base class.
Fri Oct 13 02:30:12 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
[] * lib/test/unit/collector/dir.rb (Collector::Dir#collect): prepend
* lib/test/unit/collector/dir.rb (Collector::Dir#collect): prepend
base directory to load path.
* lib/test/unit/collector/dir.rb (Collector::Dir#collect_file): should

View file

@ -376,8 +376,8 @@ rb_digest_base_equal(VALUE self, VALUE other)
klass = rb_obj_class(self);
if (rb_obj_class(other) == klass) {
str1 = rb_digest_base_digest(self);
str2 = rb_digest_base_digest(other);
str1 = rb_funcall(self, id_digest, 0);
str2 = rb_funcall(other, id_digest, 0);
} else {
StringValue(other);
str2 = other;