diff --git a/ChangeLog b/ChangeLog index 39bf572e34..78621fdde4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Oct 26 04:21:36 2007 Yukihiro Matsumoto + + * lib/net/pop.rb (Net::POP3::do_start): type fixed. a patch from + Dan Zwell in [ruby-core:12941]. + Fri Oct 26 01:48:28 2007 Yukihiro Matsumoto * array.c (rb_ary_assoc): check and convert inner arrays (assocs) diff --git a/lib/net/pop.rb b/lib/net/pop.rb index 9f00465a1d..ff6f65bb4a 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