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

ruby-changes:30632

From: drbrain <ko1@a...>
Date: Wed, 28 Aug 2013 04:55:00 +0900 (JST)
Subject: [ruby-changes:30632] drbrain:r42711 (trunk): * ext/openssl/ossl_ssl.c (ossl_ssl_read): Replace duplicate

drbrain	2013-08-28 04:54:53 +0900 (Wed, 28 Aug 2013)

  New Revision: 42711

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=42711

  Log:
    * ext/openssl/ossl_ssl.c (ossl_ssl_read):  Replace duplicate
      wait_writable with wait_readable.

  Modified files:
    trunk/ChangeLog
    trunk/ext/openssl/ossl_ssl.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 42710)
+++ ChangeLog	(revision 42711)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Aug 28 04:54:33 2013  Eric Hodel  <drbrain@s...>
+
+	* ext/openssl/ossl_ssl.c (ossl_ssl_read):  Replace duplicate
+	  wait_writable with wait_readable.
+
 Tue Aug 27 17:18:40 2013  Nobuyoshi Nakada  <nobu@r...>
 
 	* lib/timeout.rb (Timeout#timeout): skip rescue clause only when no
Index: ext/openssl/ossl_ssl.c
===================================================================
--- ext/openssl/ossl_ssl.c	(revision 42710)
+++ ext/openssl/ossl_ssl.c	(revision 42711)
@@ -1463,7 +1463,7 @@ ossl_ssl_read(int argc, VALUE *argv, VAL https://github.com/ruby/ruby/blob/trunk/ext/openssl/ossl_ssl.c#L1463
  *
  * A non-blocking version of #sysread.  Raises an SSLError if reading would
  * block.  If "exception: false" is passed, this method returns a symbol of
- * :wait_writable, :wait_writable, or nil, rather than raising an exception.
+ * :wait_readable, :wait_writable, or nil, rather than raising an exception.
  *
  * Reads +length+ bytes from the SSL connection.  If a pre-allocated +buffer+
  * is provided the data will be written into it.

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

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