diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-08 11:02:35 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-08 11:02:35 +0000 |
commit | 185c5dfdfe07ac4ef79294cbc1c315c5d986c396 (patch) | |
tree | 6c67e168876beadded603c22530cd718ad3947b9 | |
parent | 16609da5d10232c6b1c622dea2c5f6bb8ca862a8 (diff) | |
download | ruby-185c5dfdfe07ac4ef79294cbc1c315c5d986c396.tar.gz ruby-185c5dfdfe07ac4ef79294cbc1c315c5d986c396.tar.xz ruby-185c5dfdfe07ac4ef79294cbc1c315c5d986c396.zip |
* ext/openssl/ossl_config.c (ext/openssl/ossl_config.c): typofix (ossl_raise).
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4533 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/openssl/ossl_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_config.c b/ext/openssl/ossl_config.c index 1aeaa2306..fe5eba721 100644 --- a/ext/openssl/ossl_config.c +++ b/ext/openssl/ossl_config.c @@ -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; |