Method: OpenSSL::Config#sections
- Defined in:
- ossl_config.c
#sections ⇒ Object
395 396 397 398 399 400 |
# File 'ossl_config.c', line 395
static VALUE
ossl_config_get_sections(VALUE self)
{
rb_warn("#sections don't work with %s", OPENSSL_VERSION_TEXT);
return rb_ary_new();
}
|