diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-12-01 14:07:02 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-12-01 14:07:02 +0000 |
commit | bec6d909e76d95bd9b02bf19caf6720f06a6aa5a (patch) | |
tree | 9f220b8320f0a9a1b22bec8b8f112e5a2288bd1e /lib/net/imap.rb | |
parent | 31e15f76063304e4bcffb3c6c5e7b28d26cc44e5 (diff) | |
download | ruby-bec6d909e76d95bd9b02bf19caf6720f06a6aa5a.tar.gz |
One more fix to use Digest::MD5.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/imap.rb')
-rw-r--r-- | lib/net/imap.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/imap.rb b/lib/net/imap.rb index ca194e58e1..2f3e39dd32 100644 --- a/lib/net/imap.rb +++ b/lib/net/imap.rb @@ -683,7 +683,7 @@ Struct require "socket" require "monitor" -require "md5" +require "digest/md5" module Net class IMAP |