diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-21 00:33:20 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-21 00:33:20 +0000 |
commit | c17e9e077c2f6c018dc51e5b39617992adc63755 (patch) | |
tree | 996c37c083b262f1fd289702c8b85090eebaccbb | |
parent | ce7f7f5e3d6c288b140870fa87c4b11e9a744f62 (diff) |
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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/openssl/lib/openssl/ssl.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon Dec 21 09:33:17 2015 Karol Bucek <[email protected]> + + * ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLSocket): fix + NotImplementedError typo. [Fix GH-1165] + Sun Dec 20 20:54:51 2015 Takashi Kokubun <[email protected]> * cgi/escape/escape.c: Optimize CGI.escapeHTML for diff --git a/ext/openssl/lib/openssl/ssl.rb b/ext/openssl/lib/openssl/ssl.rb index 41a09f18f4..57519f2c21 100644 --- a/ext/openssl/lib/openssl/ssl.rb +++ b/ext/openssl/lib/openssl/ssl.rb @@ -251,7 +251,7 @@ module OpenSSL include SocketForwarder if ExtConfig::OPENSSL_NO_SOCK - def initialize(io, ctx = nil); raise NotImplmentedError; end + def initialize(io, ctx = nil); raise NotImplementedError; end else if ExtConfig::HAVE_TLSEXT_HOST_NAME attr_accessor :hostname |