summaryrefslogtreecommitdiff
path: root/ext/openssl
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-08 11:02:35 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-08 11:02:35 +0000
commit4b98d170229844cbd81f20f8da44900a852810ad (patch)
tree6c67e168876beadded603c22530cd718ad3947b9 /ext/openssl
parent22bb1debf99c168cd2248bb62f76bf6137bf1ce8 (diff)
* 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
Diffstat (limited to 'ext/openssl')
-rw-r--r--ext/openssl/ossl_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_config.c b/ext/openssl/ossl_config.c
index 1aeaa2306b..fe5eba7211 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;