summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-25 19:22:27 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-25 19:22:27 +0000
commit7f31a0e7933885729eeb94629bb342b0949a1369 (patch)
treec1b3f1e19a4833442a5ad9c9a224df87c39d7892 /lib
parentbbe0af6be1f85ea93c3f5fe8ca1e100c784a01e9 (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@13778 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/net/pop.rb2
1 files changed, 1 insertions, 1 deletions
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