1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/openssl/ossl_config.c (ext/openssl/ossl_config.c): typofix (ossl_raise).

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4533 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-09-08 11:02:35 +00:00
parent 22bb1debf9
commit 4b98d17022

View file

@ -109,7 +109,7 @@ ossl_config_s_alloc(VALUE klass)
VALUE obj;
if(!(conf = NCONF_new(NULL)))
ossl_rasie(eConfigError, NULL);
ossl_raise(eConfigError, NULL);
WrapConfig(klass, obj, conf);
return obj;