aboutsummaryrefslogtreecommitdiffstats
path: root/ext/digest/digest.c
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-11-01 05:01:43 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-11-01 05:01:43 +0000
commitdd937ba9dce30fb761da032ffda03f8b08c35e6e (patch)
treec89989104b5dcd8d8c326fb95d1f0650f246b5af /ext/digest/digest.c
parent70aa19b6c6498c3b609b4788cf50a848cb77a354 (diff)
downloadruby-dd937ba9dce30fb761da032ffda03f8b08c35e6e.tar.gz
* ext/digest/lib/digest/hmac.rb (Digest::HMAC::update): Minor
optimization. * ext/digest/digest.c (rb_digest_instance_equal): Allow comparing a digest instance with another of a different class. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11254 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/digest.c')
-rw-r--r--ext/digest/digest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/digest/digest.c b/ext/digest/digest.c
index 5d58149b50..c4a58cf3f6 100644
--- a/ext/digest/digest.c
+++ b/ext/digest/digest.c
@@ -286,16 +286,16 @@ rb_digest_instance_inspect(VALUE self)
* digest_obj == string -> boolean
*
* If a string is given, checks whether it is equal to the hex-encoded
- * hash value of the digest object. If another instance of the same
- * digest class is given, checks whether they have the same hash
- * value. Otherwise returns false.
+ * hash value of the digest object. If another digest instance is
+ * given, checks whether they have the same hash value. Otherwise
+ * returns false.
*/
static VALUE
rb_digest_instance_equal(VALUE self, VALUE other)
{
VALUE str1, str2;
- if (rb_obj_class(self) == rb_obj_class(other)) {
+ if (rb_obj_is_kind_of(other, rb_mDigest_Instance) == Qtrue) {
str1 = rb_digest_instance_digest(0, 0, self);
str2 = rb_digest_instance_digest(0, 0, other);
} else {