mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/ossl_ssl_session.c (SSL_SESSION_cmp): remove static for
loopy version of openssl (0.9.8l?). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5c67d206a7
commit
eaaef6af40
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Apr 24 00:14:41 2010 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* ext/openssl/ossl_ssl_session.c (SSL_SESSION_cmp): remove static for
|
||||
loopy version of openssl (0.9.8l?).
|
||||
|
||||
Fri Apr 23 23:27:17 2010 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/openssl/ossl_config.c: fix compilation failure with
|
||||
|
|
|
@ -73,7 +73,7 @@ static VALUE ossl_ssl_session_initialize(VALUE self, VALUE arg1)
|
|||
}
|
||||
|
||||
#if HAVE_SSL_SESSION_CMP == 0
|
||||
static int SSL_SESSION_cmp(const SSL_SESSION *a,const SSL_SESSION *b)
|
||||
int SSL_SESSION_cmp(const SSL_SESSION *a,const SSL_SESSION *b)
|
||||
{
|
||||
if (a->ssl_version != b->ssl_version ||
|
||||
a->session_id_length != b->session_id_length)
|
||||
|
|
Loading…
Add table
Reference in a new issue