summaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_pkey.c
diff options
context:
space:
mode:
authorkosaki <kosaki@ruby-lang.org>2011-08-07 13:52:36 +0000
committerkosaki <kosaki@ruby-lang.org>2011-08-07 13:52:36 +0000
commitbfc6be539cb2bd480f71c8cfd859824471430ed4 (patch)
treee4093d072a0e183561fcacfaf60e178f793e2710 /ext/openssl/ossl_pkey.c
parent4b95249fe7380a74799611c8aade1338608b5126 (diff)
downloadruby-openssl-history-bfc6be539cb2bd480f71c8cfd859824471430ed4.tar.gz
* ext/openssl/ossl_asn1.c (decode_eoc): remove unused variables.
Patch by Eric Wong. [Feature #5157] [ruby-core:38798] * ext/openssl/ossl_asn1.c (ossl_asn1_decode): ditto. * ext/openssl/ossl_pkey.c (ossl_pkey_new_from_data): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32884 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_pkey.c')
-rw-r--r--ext/openssl/ossl_pkey.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/openssl/ossl_pkey.c b/ext/openssl/ossl_pkey.c
index 43812da..b8480de 100644
--- a/ext/openssl/ossl_pkey.c
+++ b/ext/openssl/ossl_pkey.c
@@ -101,7 +101,6 @@ ossl_pkey_new_from_file(VALUE filename)
static VALUE
ossl_pkey_new_from_data(int argc, VALUE *argv, VALUE self)
{
- FILE *fp;
EVP_PKEY *pkey;
BIO *bio;
VALUE data, pass;