* ext/openssl/lib/openssl/x509.rb: Cosmetic change: move definition
introduced in r30152 to x509-internal.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e80d1f8faf
commit
8c30497aae
@ -1,3 +1,8 @@
|
|||||||
|
Mon Jul 25 13:46:38 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/openssl/lib/openssl/x509.rb: Cosmetic change: move definition
|
||||||
|
introduced in r30152 to x509-internal.rb.
|
||||||
|
|
||||||
Mon Jul 25 13:09:42 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
Mon Jul 25 13:09:42 2011 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||||
|
|
||||||
* ext/openssl/ossl_ssl.c (ossl_ssl_shutdown): Avoid randomly generated
|
* ext/openssl/ossl_ssl.c (ossl_ssl_shutdown): Avoid randomly generated
|
||||||
|
@ -148,5 +148,11 @@ module OpenSSL
|
|||||||
alias parse parse_openssl
|
alias parse parse_openssl
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class StoreContext
|
||||||
|
def cleanup
|
||||||
|
warn "(#{caller.first}) OpenSSL::X509::StoreContext#cleanup is deprecated with no replacement" if $VERBOSE
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -1,9 +1 @@
|
|||||||
module OpenSSL
|
require 'openssl'
|
||||||
module X509
|
|
||||||
class StoreContext
|
|
||||||
def cleanup
|
|
||||||
warn "(#{caller.first}) OpenSSL::X509::StoreContext#cleanup is deprecated with no replacement" if $VERBOSE
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user