diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-13 16:04:31 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-13 16:04:31 +0000 |
commit | 03dad72bf8b5e40888bd7bc5a43a4dd624f4d45e (patch) | |
tree | 823b59dc55746092943e9aa1d145949ea8ae73fd | |
parent | 9c3df74ef49900d9d207dd69d34adb7610e0e377 (diff) | |
download | ruby-03dad72bf8b5e40888bd7bc5a43a4dd624f4d45e.tar.gz ruby-03dad72bf8b5e40888bd7bc5a43a4dd624f4d45e.tar.xz ruby-03dad72bf8b5e40888bd7bc5a43a4dd624f4d45e.zip |
* lib/open-uri.rb (OpenURI.open_http): fix :ssl_ca_cert option.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/open-uri.rb | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sun Oct 14 01:03:30 2007 Tanaka Akira <akr@fsij.org> + + * lib/open-uri.rb (OpenURI.open_http): fix :ssl_ca_cert option. + Sat Oct 13 21:23:21 2007 Masaki Suketa <masaki.suketa@nifty.ne.jp> * ext/win32ole/win32ole.c (foletype_s_ole_classes, diff --git a/lib/open-uri.rb b/lib/open-uri.rb index 5e8accd8f..a55a1b1ac 100644 --- a/lib/open-uri.rb +++ b/lib/open-uri.rb @@ -280,7 +280,6 @@ module OpenURI else store.set_default_paths end - store.set_default_paths http.cert_store = store end if options.include? :read_timeout |