From 086830cbac0972291297fa4a094919ebeace8659 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Sat, 2 Aug 2003 12:01:48 +0000 Subject: * lib/webrick/https.rb: change an option name. :SSLCertStore -> :SSLCertificateStore. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4289 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/webrick/https.rb | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6efe3ba146..c30c29c7b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Aug 2 20:59:38 2003 GOTOU Yuuzou + + * lib/webrick/https.rb: change an option name. + :SSLCertStore -> :SSLCertificateStore. + Sat Aug 2 19:18:40 2003 Minero Aoki * lib/net/smtp.rb: respond_to? needs 2nd argument. diff --git a/lib/webrick/https.rb b/lib/webrick/https.rb index 00fd469f1b..2038540ecc 100644 --- a/lib/webrick/https.rb +++ b/lib/webrick/https.rb @@ -20,7 +20,7 @@ module WEBrick :SSLClientCA => nil, :SSLCACertificateFile => nil, :SSLCACertificatePath => nil, - :SSLCertStore => nil, + :SSLCertificateStore => nil, :SSLVerifyClient => ::OpenSSL::SSL::VERIFY_NONE, :SSLVerifyDepth => nil, :SSLVerifyCallback => nil, # custom verification @@ -147,7 +147,7 @@ module WEBrick ctx.client_ca = config[:SSLClientCA] ctx.ca_file = config[:SSLCACertificateFile] ctx.ca_path = config[:SSLCACertificatePath] - ctx.cert_store = config[:SSLCertStore] + ctx.cert_store = config[:SSLCertificateStore] ctx.verify_mode = config[:SSLVerifyClient] ctx.verify_depth = config[:SSLVerifyDepth] ctx.verify_callback = config[:SSLVerifyCallback] -- cgit v1.2.3