diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-25 19:22:27 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-25 19:22:27 +0000 |
| commit | b5ab21471d3561c173104aa67e6c723fe12bd9d4 (patch) | |
| tree | c1b3f1e19a4833442a5ad9c9a224df87c39d7892 | |
| parent | 38d4d63578a176f3c67715fbadd250dfd7b05106 (diff) | |
| download | ruby-b5ab21471d3561c173104aa67e6c723fe12bd9d4.tar.gz ruby-b5ab21471d3561c173104aa67e6c723fe12bd9d4.tar.xz ruby-b5ab21471d3561c173104aa67e6c723fe12bd9d4.zip | |
* lib/net/pop.rb (Net::POP3::do_start): type fixed. a patch from
Dan Zwell <dzwell AT zwell.net> in [ruby-core:12941].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13778 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/net/pop.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Oct 26 04:21:36 2007 Yukihiro Matsumoto <matz@ruby-lang.org> + + * lib/net/pop.rb (Net::POP3::do_start): type fixed. a patch from + Dan Zwell <dzwell AT zwell.net> in [ruby-core:12941]. + Fri Oct 26 01:48:28 2007 Yukihiro Matsumoto <matz@ruby-lang.org> * array.c (rb_ary_assoc): check and convert inner arrays (assocs) diff --git a/lib/net/pop.rb b/lib/net/pop.rb index 9f00465a1..ff6f65bb4 100644 --- a/lib/net/pop.rb +++ b/lib/net/pop.rb @@ -533,7 +533,7 @@ module Net s = OpenSSL::SSL::SSLSocket.new(s, context) s.sync_close = true s.connect - if context.verify_mode != OpenSSL::SSL::VEIFY_NONE + if context.verify_mode != OpenSSL::SSL::VERIFY_NONE s.post_connection_check(@address) end end |
