aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_x509store.c
diff options
context:
space:
mode:
authornobu <nobu@ruby-lang.org>2018-02-16 08:39:48 +0000
committerKazuki Yamaguchi <k@rhe.jp>2018-08-08 15:42:48 +0900
commit0e63f932579aa0f9b88e0e6bc45383ab0a1140b9 (patch)
treea0dfeefd783a851c7579fa1bd27b01aaa0a72bff /ext/openssl/ossl_x509store.c
parent1f90516e32ecd755d592002585e97cb78752eae2 (diff)
downloadruby-openssl-0e63f932579aa0f9b88e0e6bc45383ab0a1140b9.tar.gz
no ID cache in Init functions
Init functions are called only once, cache is useless. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e Sync-with-trunk: r62429
Diffstat (limited to 'ext/openssl/ossl_x509store.c')
-rw-r--r--ext/openssl/ossl_x509store.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/openssl/ossl_x509store.c b/ext/openssl/ossl_x509store.c
index 4becc8e3..3cddcc49 100644
--- a/ext/openssl/ossl_x509store.c
+++ b/ext/openssl/ossl_x509store.c
@@ -800,6 +800,7 @@ ossl_x509stctx_set_time(VALUE self, VALUE time)
void
Init_ossl_x509store(void)
{
+#undef rb_intern
#if 0
mOSSL = rb_define_module("OpenSSL");
eOSSLError = rb_define_class_under(mOSSL, "OpenSSLError", rb_eStandardError);