diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-20 05:46:45 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-20 05:46:45 +0000 |
commit | 1d25ffca9e45da9bcd4eeef08a4594d6ad47d69b (patch) | |
tree | 80450d2bd7479fb39aa1aceaf4320f26bd14a520 /ext/openssl/lib/net | |
parent | 92850ed76a789a78fba580df131cb383656c95d3 (diff) | |
download | ruby-1d25ffca9e45da9bcd4eeef08a4594d6ad47d69b.tar.gz ruby-1d25ffca9e45da9bcd4eeef08a4594d6ad47d69b.tar.xz ruby-1d25ffca9e45da9bcd4eeef08a4594d6ad47d69b.zip |
* lib/net/https.rb: delete descriptions about key_file and cert_file.
fixed: [ruby-dev:25243]
* ext/openssl/lib/net/telnets.rb: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7611 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/lib/net')
-rw-r--r-- | ext/openssl/lib/net/telnets.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/openssl/lib/net/telnets.rb b/ext/openssl/lib/net/telnets.rb index c7ecbd717..a872f41e6 100644 --- a/ext/openssl/lib/net/telnets.rb +++ b/ext/openssl/lib/net/telnets.rb @@ -124,9 +124,7 @@ module Net elsif SB[0] == $1[0] # respond to "IAC SB xxx IAC SE" if OPT_STARTTLS[0] == $1[1] && TLS_FOLLOWS[0] == $2[0] @sock = OpenSSL::SSL::SSLSocket.new(@sock) - @sock.cert_file = @options['CertFile'] @sock.cert = @options['Cert'] unless @sock.cert - @sock.key_file = @options['KeyFile'] @sock.key = @options['Key'] unless @sock.key @sock.ca_cert = @options['CACert'] @sock.ca_file = @options['CAFile'] |