From 960e6ec4155db284d7446f45b34bfabfedad1ea5 Mon Sep 17 00:00:00 2001 From: knu Date: Wed, 11 Oct 2006 17:14:54 +0000 Subject: * ext/digest/digest.c (get_digest_base_metadata): Use an instance variable of a class object instead of a class variable for metadata. This change is crucial for ruby 1.8 and applying it also to the trunk will assure compatibilities. * ext/digest/md5/md5init.c (Init_md5): Ditto. * ext/digest/rmd160/rmd160init.c (Init_rmd160): Ditto. * ext/digest/sha1/sha1init.c (Init_sha1): Ditto. * ext/digest/sha2/sha2init.c (Init_sha2): Ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 12dd4f857..e77727731 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +Thu Oct 12 02:12:31 2006 Akinori MUSHA + + * ext/digest/digest.c (get_digest_base_metadata): Use an instance + variable of a class object instead of a class variable for + metadata. This change is crucial for ruby 1.8 and applying it + also to the trunk will assure compatibilities. + + * ext/digest/md5/md5init.c (Init_md5): Ditto. + + * ext/digest/rmd160/rmd160init.c (Init_rmd160): Ditto. + + * ext/digest/sha1/sha1init.c (Init_sha1): Ditto. + + * ext/digest/sha2/sha2init.c (Init_sha2): Ditto. + Wed Oct 11 21:36:47 2006 Akinori MUSHA * ext/digest/digest.c (rb_digest_base_alloc, -- cgit