diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-20 13:01:55 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-20 13:01:55 +0000 |
| commit | 44c912c7a599ebcfbf0c062450897ab8900f3afc (patch) | |
| tree | d49eb6fa182be04d42d1243f0781384bbc751518 /ext/digest/sha2/lib | |
| parent | a56084dcf550f915827d82834cea7477e60258f3 (diff) | |
| download | ruby-44c912c7a599ebcfbf0c062450897ab8900f3afc.tar.gz ruby-44c912c7a599ebcfbf0c062450897ab8900f3afc.tar.xz ruby-44c912c7a599ebcfbf0c062450897ab8900f3afc.zip | |
* ext/digest/lib/digest/hmac.rb: Complete half-boiled updates.
* ext/digest/sha2/lib/digest/sha2.rb: Fix #initialize_clone().
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11198 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/sha2/lib')
| -rw-r--r-- | ext/digest/sha2/lib/digest/sha2.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/digest/sha2/lib/digest/sha2.rb b/ext/digest/sha2/lib/digest/sha2.rb index 683b9904a..52dd639f9 100644 --- a/ext/digest/sha2/lib/digest/sha2.rb +++ b/ext/digest/sha2/lib/digest/sha2.rb @@ -62,7 +62,7 @@ module Digest # :nodoc: def initialize_copy(other) - @sha2 = @sha2.clone + @sha2 = other.instance_eval { @sha2.clone } end # :nodoc: |
