From 185c5dfdfe07ac4ef79294cbc1c315c5d986c396 Mon Sep 17 00:00:00 2001 From: eban Date: Mon, 8 Sep 2003 11:02:35 +0000 Subject: * 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 --- ext/openssl/ossl_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/openssl') 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; -- cgit