diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-09-10 08:54:50 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-09-10 08:54:50 +0000 |
commit | 7f438d8402f53c2f78c5c6512c3d2f68d9fb20ac (patch) | |
tree | 051e39ad59b46aa58fb77aa9062460e5fd5fc7d1 /test/openssl/test_pair.rb | |
parent | cb81b56de2f1edc56ac84366a73b96a3266305ee (diff) |
* ext/openssl/lib/openssl/x509-internal.rb: removed unused local
variable.
* test/openssl/*: less warnings while test running with -w.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29217 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/openssl/test_pair.rb')
-rw-r--r-- | test/openssl/test_pair.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/openssl/test_pair.rb b/test/openssl/test_pair.rb index d25a59b740..0f54e5b893 100644 --- a/test/openssl/test_pair.rb +++ b/test/openssl/test_pair.rb @@ -195,7 +195,6 @@ class OpenSSL::TestPair < Test::Unit::TestCase ctx = OpenSSL::SSL::SSLContext.new() ctx.ciphers = "ADH" serv = TCPServer.new(host, port) - ssls = OpenSSL::SSL::SSLServer.new(serv, ctx) port = serv.connect_address.ip_port |