mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
NotImplementedError typo
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLSocket): fix NotImplementedError typo. [Fix GH-1165] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53223 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ce7f7f5e3d
commit
c17e9e077c
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Dec 21 09:33:17 2015 Karol Bucek <kares@users.noreply.github.com>
|
||||||
|
|
||||||
|
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLSocket): fix
|
||||||
|
NotImplementedError typo. [Fix GH-1165]
|
||||||
|
|
||||||
Sun Dec 20 20:54:51 2015 Takashi Kokubun <takashikkbn@gmail.com>
|
Sun Dec 20 20:54:51 2015 Takashi Kokubun <takashikkbn@gmail.com>
|
||||||
|
|
||||||
* cgi/escape/escape.c: Optimize CGI.escapeHTML for
|
* cgi/escape/escape.c: Optimize CGI.escapeHTML for
|
||||||
|
|
|
@ -251,7 +251,7 @@ module OpenSSL
|
||||||
include SocketForwarder
|
include SocketForwarder
|
||||||
|
|
||||||
if ExtConfig::OPENSSL_NO_SOCK
|
if ExtConfig::OPENSSL_NO_SOCK
|
||||||
def initialize(io, ctx = nil); raise NotImplmentedError; end
|
def initialize(io, ctx = nil); raise NotImplementedError; end
|
||||||
else
|
else
|
||||||
if ExtConfig::HAVE_TLSEXT_HOST_NAME
|
if ExtConfig::HAVE_TLSEXT_HOST_NAME
|
||||||
attr_accessor :hostname
|
attr_accessor :hostname
|
||||||
|
|
Loading…
Add table
Reference in a new issue