diff options
author | rhe <rhe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-25 08:50:03 +0000 |
---|---|---|
committer | rhe <rhe@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-25 08:50:03 +0000 |
commit | cf2792d59191424ee7875b5cc96fe31facce2471 (patch) | |
tree | 9a364fd7aab34a08b49427759776060aa4b3afbf /ext/openssl/ossl.c | |
parent | 0766b8af2a3348acbce1b8b6ccf9a5e68f29fb8b (diff) | |
download | ruby-cf2792d59191424ee7875b5cc96fe31facce2471.tar.gz |
openssl: drop OpenSSL 0.9.6/0.9.7 support
* ext/openssl, test/openssl: Drop OpenSSL < 0.9.8 support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55162 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl.c')
-rw-r--r-- | ext/openssl/ossl.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/openssl/ossl.c b/ext/openssl/ossl.c index c06a579ce3..3654b1e851 100644 --- a/ext/openssl/ossl.c +++ b/ext/openssl/ossl.c @@ -339,11 +339,7 @@ ossl_make_error(VALUE exc, const char *fmt, va_list args) const char *msg; long e; -#ifdef HAVE_ERR_PEEK_LAST_ERROR e = ERR_peek_last_error(); -#else - e = ERR_peek_error(); -#endif if (fmt) { str = rb_vsprintf(fmt, args); } |