[前][次][番号順一覧][スレッド一覧]

ruby-changes:2287

From: ko1@a...
Date: 26 Oct 2007 04:22:38 +0900
Subject: [ruby-changes:2287] matz - Ruby:r13778 (trunk): * lib/net/pop.rb (Net::POP3::do_start): type fixed. a patch from

matz	2007-10-26 04:22:27 +0900 (Fri, 26 Oct 2007)

  New Revision: 13778

  Modified files:
    trunk/ChangeLog
    trunk/lib/net/pop.rb

  Log:
    * lib/net/pop.rb (Net::POP3::do_start): type fixed.  a patch from
      Dan Zwell <dzwell AT zwell.net> in [ruby-core:12941].

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=13778&r2=13777
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/lib/net/pop.rb?r1=13778&r2=13777

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 13777)
+++ ChangeLog	(revision 13778)
@@ -1,3 +1,8 @@
+Fri Oct 26 04:21:36 2007  Yukihiro Matsumoto  <matz@r...>
+
+	* 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@r...>
 
 	* array.c (rb_ary_assoc): check and convert inner arrays (assocs)
Index: lib/net/pop.rb
===================================================================
--- lib/net/pop.rb	(revision 13777)
+++ lib/net/pop.rb	(revision 13778)
@@ -533,7 +533,7 @@
         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

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧]